September 17th, 2006 Category: JavaScript, Web Development, jQuery I contributed a cookie plugin for jQuery yesterday. You can get it from the (Subversion) repository: svn://jquery.com/plugins Or get it here. A few simple examples of how to use it: $.cookie('the_cookie'); // get cookie $.cookie('the_cookie', 'the_value'); // set cookie $.cookie('the_cookie', 'the_value', { expires: 7 }); // set c