Skip to content

Instantly share code, notes, and snippets.

@JellyWX
Created October 5, 2016 12:06
Show Gist options
  • Save JellyWX/d4391df27da6dc04f8d146a41514c82f to your computer and use it in GitHub Desktop.
Save JellyWX/d4391df27da6dc04f8d146a41514c82f to your computer and use it in GitHub Desktop.
/*2 functions which can be used to create and grab cookie data. This code credits to W3Schools*/
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;
}
function getCookie(cname) {
var name = cname + "=";
var ca = document.cookie.split(';');
for(var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment