up vote 25 down vote favorite
4
share [g+] share [fb]

I am using the jQuery Cookie plugin (download and demo and source code with comments) to set and read a cookie. I'm developing the page on my local machine.

The following code will successfully set a cookie in FireFox 3, IE 7, and Safari (PC). But if the browser is Google Chrome AND the page is a local file, it does not work.

$.cookie("nameofcookie", cookievalue, {path: "/", expires: 30});

What I know:

  • The plugin's demo works with Chrome.
  • If I put my code on a web server (address starting with http://), it works with Chrome.

So the cookie fails only for Google Chrome on local files.

Possible causes:

  • Google Chrome doesn't accept cookies from web pages on the hard drive (paths like file:///C:/websites/foo.html)
  • Something in the plugin implentation causes Chrome to reject such cookies

Can anyone confirm this and identify the root cause?

link|improve this question

69% accept rate
When you say the demo works, do you mean if you save it to your hard drive and access it like file://? – Greg Dec 2 '08 at 20:15
No - just accessing the link above with Chrome. – Nathan Long Dec 15 '08 at 18:53
feedback

6 Answers

up vote 30 down vote accepted

Chrome doesn't support cookies for local files (or, like Peter Lyons mentioned, localhost*) unless you start it with the --enable-file-cookies flag. You can read a discussion about it at http://code.google.com/p/chromium/issues/detail?id=535.

*Chrome does support cookies if you use the local IP address (127.0.0.1) directly. so in the localhost case, that could be an easier workaround.

link|improve this answer
1  
While I am not about to rush in and use Chrome, I do use TiddlyWiki daily and I was surprised at the response from the Chrome team over this "issue". – Peter M Dec 7 '08 at 20:11
Awesome! Way to track down the root cause - and a solution. – Nathan Long Dec 15 '08 at 18:54
1  
FYI the same behavior also seems to effect localhost sites – Peter Lyons Jun 23 '11 at 20:02
Thanks. I wasted an hour and a half thinking my cookie was malformed. 127.0.0.1 solved the problem. – Gullbyrd Dec 21 '11 at 16:40
feedback

For local applications use localStorage in Chrome instead: http://people.w3.org/mike/localstorage.html

link|improve this answer
feedback

Another possible cause is the path: "/", since you're not using a normal web URL, / probably doesn't mean much - try without setting the path at all.

link|improve this answer
Good thought, but '/' is the default anyway. I tried 'file:///C:/' but I think that's nonsense in this context. – Nathan Long Dec 2 '08 at 20:20
feedback

I had the same issue, please try using the IP address of localhost instead. For e.g "http://127.0.0.1/yoursite/"

link|improve this answer
feedback

please check out http://code.google.com/apis/analytics/docs/concepts/gaConceptsCookies.html

$.cookie("nameofcookie", cookievalue, {path: "/", expires: 30});

change this line to $.cookie("nameofcookie", cookievalue, {Path: "/", expires: 30});

this project working is fine :enter link description here

link|improve this answer
Incorrect; the casing does not matter. – Jon Adams Sep 21 '11 at 22:48
feedback

i had some problem and solved it this terrible solution. using store and cookie plugin together.

<script src="js/jquery.cookies.2.2.0.js" type="text/javascript"></script>
<script src="js/jquery.Storage.js" type="text/javascript"></script>

var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;

//get cookies
var helpFlag=(is_chrome)?$.Storage.get("helpFlag"):$.cookies.get("helpFlag");

//set cookies
if(is_chrome)$.Storage.set("helpFlag", "1");else $.cookies.set("helpFlag", "1");

I know that this isnt perfect solution but works for me

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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