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: .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);
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./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
asked Jul 2, 2012 at 14:31
bananabanana
1,2064 gold badges15 silver badges27 bronze badges
4 Answers
Reset to default 4Some updates on very similar topic. Secure cookies are not shown on insecure sites.
https://groups.google./forum/#!topic/google-chrome-developer-tools/rSbJ1m2F3HY
You need to refresh the resources inspector (small refresh icon in the bottom of the dev tools tray) before it appears.
As from experience, you'll need to refresh the cookies page after you implement the cookie with JS.
Check the cookie settings in your browser and select Allow all cookies option and then refresh the page.