2020-12-20 17:17:36 -07:00
|
|
|
/*
|
2021-04-05 12:17:38 -06:00
|
|
|
these code snippets copied from
|
2020-12-20 17:17:36 -07:00
|
|
|
https://www.w3schools.com/js/js_cookies.asp
|
2021-04-05 12:17:38 -06:00
|
|
|
used under fair use; for copyright see https://www.w3schools.com/about/about_copyright.asp
|
2020-12-22 07:14:05 -07:00
|
|
|
|
|
|
|
window.setCookie() sets a cookie, window.getCookie() gets a cookie.
|
2020-12-20 17:17:36 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
window.setCookie = function(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=/";
|
|
|
|
};
|
|
|
|
|
|
|
|
window.getCookie = function(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 "";
|
|
|
|
};
|