jQuery Cookie Plugin
Very easy implementation for interacting with browser cookies using jquery
$.cookie('the_cookie'); // get cookie
$.cookie('the_cookie', 'the_value'); // set cookie
$.cookie('the_cookie', 'the_value', { expires: 7 }); // set cookie with an expiration date seven days in the future
$.cookie('the_cookie', null); // delete cookie
- Download
- Demo (view the source to see example js code)
- Associated blog post
