Skip to content

Instantly share code, notes, and snippets.

@wthit56
Last active December 10, 2015 19:48
Show Gist options
  • Save wthit56/4483848 to your computer and use it in GitHub Desktop.
Save wthit56/4483848 to your computer and use it in GitHub Desktop.
function bake_cookie(c_name,value,exdays){
this.set = function(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;
};
this.get = function(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);
}
}
};
}
// to create the object
var bakecookie = new bake_cookie();
// set cookie
bakecookie.set('test','set',1);
// get cookie
alert(bakecookie.get('test'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment