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.

I created cookie with server side code (c#) and it was shown in chrome developer tools. (Resources->Cookies) now I created it in js and it is not shown there anymore. if I write in the console: "document.cookie" - I can see my cookie, but I want to see it in Resources->Cookies so I can easily delete it when I want to. the code to create the cookie: (from: http://www.w3schools.com/js/js_cookies.asp?output=print)

function setCookie(c_name, value, exdays) {
var exdate = new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" +   exdate.toUTCString());
document.cookie = c_name + "=" + c_value;
}

and:

setCookie("myCookie", "true", 365);
share|improve this question

2 Answers

up vote 1 down vote accepted

You need to refresh the resources inspector (small refresh icon in the bottom of the dev tools tray) before it appears.

share|improve this answer
Thanks, but it did not help. I even closed and opened the browser - and the cookie didn't appear. – banana Jul 2 '12 at 14:36
Are you defining the domain when setting the cookie? – Chris Francis Jul 2 '12 at 14:39
no. you can see the code in my question. – banana Jul 2 '12 at 14:44
Hmm, should be fine then - a cookie without an explicit domain should use the domain of the page that it's set on. In my experience, the refresh trick always works! – Chris Francis Jul 2 '12 at 14:47
Have you tried my code and it worked for you? – banana Jul 2 '12 at 14:52
show 3 more comments

As from experience, you'll need to refresh the cookies page after you implement the cookie with JS.

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.