jQuery cookiehttps://github.com/carhartl/jquery-cookie jQuery Cookie Plugin v1.4.0 Installation UsageCreate session cookie:$.cookie('the_cookie', 'the_value'); Create expiring cookie, 7 days from then:$.cookie('the_cookie', 'the_value', { expires: 7 }); Create expiring cookie, valid across entire site:$.cookie('the_cookie', 'the_value', { expires: 7, path: '/' }); Read cookie:$.cookie('the_cooki..