How To Set, Get And Delete Cookies With jQuery

Author: , February 25th, 2011

Prerequisite Plugin Get the plugin: http://plugins.jquery.com/project/cookie How-To Set a cookie: jQuery.cookie(“myCookie”, 1); Get a cookie: jQuery.cookie(“myCookie”); Delete a cookie: jQuery.cookie(“myCookie”, null); Set expiration in days: jQuery.cookie(“myCookie”, 1, { expires : 10 }); If the expires option is omitted, then the cookie becomes a session cookie, and is deleted when the browser exists. OPTIONS jQuery.cookie(“myCookie”, 1, […]