Skip to content

Instantly share code, notes, and snippets.

@core-hacked
Created April 1, 2022 10:39
Show Gist options
  • Save core-hacked/f23661d2df9da24a9ebcb1755c356b57 to your computer and use it in GitHub Desktop.
Save core-hacked/f23661d2df9da24a9ebcb1755c356b57 to your computer and use it in GitHub Desktop.
Simple cookie setter/getter for js
// get cookie by name
function getCookie(cname) {
var name = cname + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.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 "";
}
// set cookie
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 + ";path=/";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment