Skip to content

Instantly share code, notes, and snippets.

@azl397985856
Created May 14, 2019 02:04
Show Gist options
  • Save azl397985856/a13ac6aa930ba4b109a0ca4afabb1248 to your computer and use it in GitHub Desktop.
Save azl397985856/a13ac6aa930ba4b109a0ca4afabb1248 to your computer and use it in GitHub Desktop.
setCookie
function setCookie(cookieName,value,expiresTime,path){
expiresTime = expiresTime || "Thu, 01-Jan-2030 00:00:01 GMT";
path = path || "/";
document.cookie=cookieName+ "=" +encodeURIComponent(value)+ "; expires="+ expiresTime+ "; path="+path;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment