■ jQuery.cookie.js http://plugins.jquery.com/project/cookie ダウンロードはこちら http://plugins.jquery.com/files/jquery.cookie.js.txt 使い方は >|| $.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', '', { expires: -1 }); // delete cookie