Skip to content

Instantly share code, notes, and snippets.

@RatzeR
Created October 19, 2015 12:26
Show Gist options
  • Save RatzeR/47a3192353149ef9a3b8 to your computer and use it in GitHub Desktop.
Save RatzeR/47a3192353149ef9a3b8 to your computer and use it in GitHub Desktop.
Cookie: {
setCookie: function(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;
},
getCookie: function(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 "";
},
deleteCookie: function(cname) {
document.cookie = cname + '=; expires=Thu, 01 Jan 1970 00:00:01 GMT;';
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment