jQuery Cookie
https://github.com/carhartl/jquery-cookie
$.cookie('key', 'value', { expires: 7 });
var key = $.cookie('key');
if ( key = 'value' ) {
alert();
}
https://github.com/carhartl/jquery-cookie
$.cookie('key', 'value', { expires: 7 });
var key = $.cookie('key');
if ( key = 'value' ) {
alert();
}