up vote 58 down vote favorite
14
share [g+] share [fb]

Simple example: I want to have some items on a page (like divs or table rows) and I want to let the user click on them to select them. That seems easy enough in jquery. To save which items a user clicks on with no server-side post backs, I was thinking a cookie would be a simple way to get this done.

  1. Is this assumption that a cookie is ok in this case, correct?
  2. If it is correct, does the jquery api have some way to read/write cookie info that is nicer than the default JS apis?
link|improve this question

63% accept rate
feedback

9 Answers

up vote 81 down vote accepted

See here: http://plugins.jquery.com/project/cookie

link|improve this answer
39  
omg's you googles faster than I! – iAn Sep 18 '08 at 18:20
does anyone have a mirror? the site is down – Zachary Burt Sep 20 '10 at 9:50
8  
Having the same proble here. I found a link to an improved version here: jquery-howto.blogspot.com/2010/09/… – jQuery Lover Sep 21 '10 at 22:07
good improvement... – CallMeLaNN Sep 30 '10 at 3:31
github.com/carhartl/jquery-cookie – Andrei Dec 25 '11 at 14:40
feedback

The default JS "API" for setting a cookie is as easy as:

document.cookie = 'mycookie=valueOfCookie;expires=DateHere;path=/'
link|improve this answer
5  
Yeah, writing cookies is easy, but reading them is sort of a pain, since you have to split strings and stuff. If you're already using JQuery, then the cookie plugin could be nice...... An annoying thing about reading cookies is that some browsers remove the final semicolon and some don't.... nice to have someone else handle all that. – Peter Ajtai Jun 12 '10 at 21:24
3  
Oh, and the JQuery cookie plugin is only 40 lines of JS... and you can edit it to your desire, so that you don't feel like you're entering the abstraction danger zone. – Peter Ajtai Jun 12 '10 at 21:36
3  
Not related to jQuery as asked. Peter Ajtai comment shows why casademora ask for jQuery plugin instead of Javascript. – CallMeLaNN Sep 30 '10 at 3:02
feedback

You'll need the cookie plugin, which provides several additional signatures to the cookie function.

$.cookie('cookie_name', 'cookie_value') stores a transient cookie (only exists within this session's scope, while $.cookie('cookie_name', 'cookie_value', 'cookie_expiration") creates a cookie that will last across sessions - see http://www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/ for more information on the JQuery cookie plugin.

If you want to set cookies that are used for the entire site, you'll need to use JavaScript like this:

document.cookie = "name=value; expires=date; domain=domain; path=path; secure"
link|improve this answer
feedback

A new jQuery plugin for cookie retrieval and manipulation with binding for forms, etc: http://plugins.jquery.com/project/cookies

link|improve this answer
3  
For anyone who reads the link too quickly, notice the 's' at the end of cookie to make this a different answer than the one by Alex Fort – Patrick Aug 13 '09 at 17:32
3  
No longer a good link – cdeszaq Jun 24 '11 at 14:00
feedback

To answer your question, yes. The other have answered that part, but it also seems like you're asking if that's the best way to do it.

It would probably depend on what you are doing. Typically you would have a user click what items they want to buy (ordering for example). Then they would hit a buy or checkout button. Then the form would send off to a page and process the result. You could do all of that with a cookie but I would find it to be more difficult.

You may want to consider posting your second question in another topic.

link|improve this answer
feedback

Take a look at the Cookie Plugin for JQuery

link|improve this answer
feedback

Just replied to Zachary Burt's commented. It seems jQuery cookie plugin is not available for download

However, you can download the same jQuery Cookie plugin with some improvements described here.

link|improve this answer
I also realize, the cookie plugin development stopped there since the first release and not sure whether it compatible with jQuery 1.4* – CallMeLaNN Sep 30 '10 at 3:03
The plugin is compatible with jQuery 1.4, since the extending syntax has not changed since then... – jQuery Lover Oct 3 '10 at 23:01
feedback

You can browse all the jQuery plugins tagged with "cookie" here:

http://plugins.jquery.com/plugin-tags/cookies

Plenty of options there.

Check out the one called jQuery Storage, which takes advantage of HTML5's localStorage. If localStorage isn't available, it defaults to cookies. However, it doesn't allow you to set expiration.

link|improve this answer
feedback

I realized that when using Cake Cookie Commponent it returns a cookie array in the style of:

CakeCookie[name] = Larry

the jquery plugin is having problems with it?

Bug on GitHub

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.