Skip to content

Instantly share code, notes, and snippets.

@osmyn
Created June 22, 2015 16:23
Show Gist options
  • Save osmyn/a3f33ab2b9ed9d57025e to your computer and use it in GitHub Desktop.
Save osmyn/a3f33ab2b9ed9d57025e to your computer and use it in GitHub Desktop.
A javascript cookie module
<script>
var CookieMonster = (function() {
return {
checkCookie: checkCookie,
getCookie: getCookie,
setCookie: setCookie,
deleteCookie: deleteCookie
};
function checkCookie(cname) {
return getCookie(cname) != "";
}
function setCookie(cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
var expires = "expires="+d.toUTCString();
document.cookie = cname + "=" + cvalue + "; " + expires;
}
function getCookie(cname) {
var name = cname + "=";
var ca = document.cookie.split(';');
for(var i=0; i<ca.length; i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1);
if (c.indexOf(name) == 0) return c.substring(name.length, c.length);
}
return "";
}
function deleteCookie(cname) {
setCookie(cname, '', -5);
}
})();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment