Skip to content

Instantly share code, notes, and snippets.

@megatontech
Created August 2, 2016 02:49
Show Gist options
  • Save megatontech/b97c1572f0549ab28d9fee51744044c4 to your computer and use it in GitHub Desktop.
Save megatontech/b97c1572f0549ab28d9fee51744044c4 to your computer and use it in GitHub Desktop.
function setCookie(cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
var expires = "expires="+d.toUTCString();
document.cookie = cname + "=" + cvalue + "; " + expires;
}
setCookie('op','username=xiali&password=31C9CDA783173B7E17DFFD199F7B8F',5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment