Skip to content

Instantly share code, notes, and snippets.

@robobenklein
Last active August 29, 2015 14:09
Show Gist options
  • Save robobenklein/265a16d5f5a3729ac2e4 to your computer and use it in GitHub Desktop.
Save robobenklein/265a16d5f5a3729ac2e4 to your computer and use it in GitHub Desktop.
Get and Set Cookies the easy way.
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) != -1) {
return c.substring(name.length, c.length);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment