vote up 3 vote down star
1

I want to know if, when I make a $.post(...) with jQuery, does any cookie is sent to the server in the post request?

Thanks!

flag

1  
If you use Firebug, you can look in the "Console" area to see any requests being made. Look in the headers for cookie data. – Nathan Long Oct 7 at 20:16

4 Answers

vote up 3 vote down check

Cookies are sent with Ajax requests.

When the HTTPOnly flag is set for a cookie, this cookie is hidden from client-side scripts, but the cookie is still sent with Ajax requests.

link|flag
Thanks for your answer – ramayac Jun 24 at 22:33
HTTPOnly doesn't affect AJAX/HTTP requests, it only hides the cookie from the client-side script. It will still be sent to the server. – Christian Davén Sep 8 at 17:31
@Christian - corrected, thanks. – Ayman Hourieh Oct 7 at 20:11
vote up 1 vote down

Using Firefox+Firebug you can see exactly what jQuery sends, and how. Useful for debugging!

link|flag
vote up 2 vote down

Using the same cookies on the client and the server is not possible when you have httpOnlyCookies switched on. There is very good reason switch this on too:

http://www.codinghorror.com/blog/archives/001167.html

link|flag
+1 Thanks for that link! – MSpreij Jun 24 at 22:50
This is incorrect. Have a look at this question for a really good explanation of HTTPOnly+AJAX: stackoverflow.com/questions/27972/… – Christian Davén Sep 8 at 17:32
vote up 2 vote down

Without knowing for sure I'm going to say a big fat yes because I'm in that sort of mood!

To test it, post to a page which examines the request.

link|flag
+1 for teaching a good way to figure stuff out on your own instead of just giving an answer =) – Tomas Lycken Jun 24 at 22:18
hahaha! thats the spirit! :) – ramayac Jun 24 at 22:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.