Skip to content

Instantly share code, notes, and snippets.

@ankitnetwork18
Created January 11, 2013 07:14
Show Gist options
  • Save ankitnetwork18/4508641 to your computer and use it in GitHub Desktop.
Save ankitnetwork18/4508641 to your computer and use it in GitHub Desktop.
Cookies: function to 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