Skip to content

Instantly share code, notes, and snippets.

@amandarae
Created September 7, 2012 21:42
Show Gist options
  • Save amandarae/3669938 to your computer and use it in GitHub Desktop.
Save amandarae/3669938 to your computer and use it in GitHub Desktop.
The forever floating around cookie js script
function createCookie(name,value,days) {
if (days) {
var date = new Date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
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,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
var update_cookie = readCookie('unsubbed_brands') + 'someOtherValue';
createCookie('unsubbed_brands',update_cookie,365);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment