Skip to content

Instantly share code, notes, and snippets.

@ReeMii
Created October 4, 2013 08:43
Show Gist options
  • Save ReeMii/6822873 to your computer and use it in GitHub Desktop.
Save ReeMii/6822873 to your computer and use it in GitHub Desktop.
setcookie
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