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 am setting a cookie in Javascript using the following code :

setCookie('cart_items','product_name');


function setCookie(name,value,days) {
    if (days) {
        var date = new Date();
        date.setTime(date.getTime()+(days*24*60*60*1000));
        var expires = "; expires="+date.toGMTString();
    }
    else var expires = "";
    document.cookie = name+"="+value+expires+"; path=/";
}

But the cookie path is not set to root (/) in Chrome. Instead it gets set to the path from where the web page is being executed !!

I tested with IE and FF. It works fine with both these browsers ....

What might be wrong with Chrome or Is it the problem with cookie creation code i am using??

In Chrome ( 16.0.912.63 )

Path: /xxxxxxxx/xxxxxxx

in FF ( 6.0 )

Path: /

in IE (9)

Path: /

share|improve this question
Why don't you set the path yerself? – Dhaivat Pandya Dec 17 '11 at 4:54
the path has been explicitly set ( document.cookie = name+"="+value+expires+"; path=/"; ) – Sandy505 Dec 17 '11 at 4:57
ah. Sorry, my mistake. – Dhaivat Pandya Dec 17 '11 at 5:12
1  
are you testing with local files or on server? Chrome had some issues with cookies and local files – Oleg Mikheev Dec 17 '11 at 5:24
have just tried on 15.0.874.102 Linux and it worked fine... – Oleg Mikheev Dec 17 '11 at 5:29
show 3 more comments

1 Answer

The reason this happens is because chrome doesn't allow setting cookies on local files by default. See this answer for more information: http://stackoverflow.com/a/347997/1324019

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.