Skip to content

Instantly share code, notes, and snippets.

@alkrauss48
Created June 11, 2014 16:38
Show Gist options
  • Save alkrauss48/8c19f04552fea6b76986 to your computer and use it in GitHub Desktop.
Save alkrauss48/8c19f04552fea6b76986 to your computer and use it in GitHub Desktop.
Setting and Retrieving Cookies with JS
function getCookie(c_name) {
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++)
{
x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
x=x.replace(/^\s+|\s+$/g,"");
if (x==c_name){
return unescape(y);
}
}
}
function setCookie(c_name,value,exdays) {
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment