vote up 12 vote down star
1

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?
flag

60% accept rate

5 Answers

vote up 24 vote down check

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

link|flag
4  
omg's you googles faster than I! – iAn Sep 18 '08 at 18:20
vote up 3 vote down

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

link|flag
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 at 17:32
vote up 5 vote down

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|flag
vote up 1 vote down

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|flag
vote up 3 vote down

Take a look at the Cookie Plugin for JQuery

link|flag

Your Answer

Get an OpenID
or

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