Can JQuery read/write cookies to a browser? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T08:30:08Z http://stackoverflow.com/feeds/question/95213 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/95213/can-jquery-read-write-cookies-to-a-browser 12 Can JQuery read/write cookies to a browser? casademora 2008-09-18T18:17:54Z 2009-02-27T18:01:18Z <p>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.</p> <ol> <li>Is this assumption that a cookie is ok in this case, correct?</li> <li>If it is correct, does the jquery api have some way to read/write cookie info that is nicer than the default JS apis?</li> </ol> http://stackoverflow.com/questions/95213/can-jquery-read-write-cookies-to-a-browser/95238#95238 25 Answer by Alex Fort for Can JQuery read/write cookies to a browser? Alex Fort 2008-09-18T18:19:59Z 2009-02-27T18:01:18Z <p>See here: <a href="http://plugins.jquery.com/project/cookie" rel="nofollow">http://plugins.jquery.com/project/cookie</a></p> http://stackoverflow.com/questions/95213/can-jquery-read-write-cookies-to-a-browser/95241#95241 3 Answer by iAn for Can JQuery read/write cookies to a browser? iAn 2008-09-18T18:20:24Z 2008-09-18T18:20:24Z <p>Take a look at the <a href="http://plugins.jquery.com/project/cookie" rel="nofollow">Cookie Plugin</a> for JQuery</p> http://stackoverflow.com/questions/95213/can-jquery-read-write-cookies-to-a-browser/95348#95348 1 Answer by SeanDowney for Can JQuery read/write cookies to a browser? SeanDowney 2008-09-18T18:29:19Z 2008-11-15T17:05:21Z <p>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.</p> <p>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. </p> <p>You may want to consider posting your second question in another topic.</p> http://stackoverflow.com/questions/95213/can-jquery-read-write-cookies-to-a-browser/95351#95351 5 Answer by Steve Moyer for Can JQuery read/write cookies to a browser? Steve Moyer 2008-09-18T18:29:34Z 2008-09-18T18:29:34Z <p>You'll need the cookie plugin, which provides several additional signatures to the cookie function.</p> <p>$.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 <a href="http://www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/" rel="nofollow">http://www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/</a> for more information on the JQuery cookie plugin.</p> <p>If you want to set cookies that are used for the entire site, you'll need to use JavaScript like this:</p> <p>document.cookie = "name=value; expires=date; domain=domain; path=path; secure"</p> http://stackoverflow.com/questions/95213/can-jquery-read-write-cookies-to-a-browser/292755#292755 3 Answer by Giver of Cookies for Can JQuery read/write cookies to a browser? Giver of Cookies 2008-11-15T16:52:32Z 2008-11-15T16:52:32Z <p>A new jQuery plugin for cookie retrieval and manipulation with binding for forms, etc: <a href="http://plugins.jquery.com/project/cookies" rel="nofollow">http://plugins.jquery.com/project/cookies</a></p>