Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I'm testing some cookies that I'm creating via Javascript. Is there a way to check if the cookie was set in Chrome Developer Tools or something similar?

share|improve this question

3 Answers

up vote 1 down vote accepted

You can also click the "Resources" tab then the "Cookies" list item, which shows a fair amount of detail.

share|improve this answer

In your console, type document.cookie. It will return the active cookies for that page.

share|improve this answer
Over the last week I'm starting to realize how awesome the JS console is! Thanks! – Howdy_McGee Apr 4 '12 at 16:16

You can also use web developer tool which not only helps you to view cookies but also helps you to display.delete (session,domain,path) cookies individually.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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