Skip to content

Instantly share code, notes, and snippets.

@tairov
Created August 6, 2013 11:13
Show Gist options
  • Save tairov/6163628 to your computer and use it in GitHub Desktop.
Save tairov/6163628 to your computer and use it in GitHub Desktop.
set cookie
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