|
CooKie
jquery.cookie.js
Basic set cookie
$.cookie('the_cookie', 'the_value');
Set cookie with options
$.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
Unset cookie
$.cookie('the_cookie', null);
|
Sign in to add a comment