1
0

More scripting stuff

This commit is contained in:
devenblake 2020-10-22 11:28:31 -04:00
parent 0084a90ddb
commit 41f955e7ff
2 changed files with 17 additions and 20 deletions

View File

@ -10,7 +10,6 @@
<BODY>
<SCRIPT src="/main.js"></SCRIPT>
<SCRIPT>
function setStyling(sheet) { document.getElementById('styling').setAttribute('href', sheet); return sheet; }
var sheet = getCookie('sheet');
if(sheet != '') setStyling(sheet);
</SCRIPT>

View File

@ -1,30 +1,28 @@
/*
these code snippets stolen from
https://www.w3schools.com/js/js_cookies.asp
these code snippets stolen from
https://www.w3schools.com/js/js_cookies.asp
*/
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=/";
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
var expires = "expires="+ d.toUTCString();
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}
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 "";
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 "";
}
/* end stolen code; */
function setStyling(sheet, pathToRoot) {
document.getElementById('styling')
.setAttribute('href', pathToRoot + sheet + ".css");
return sheet;
document.getElementById('styling').setAttribute('href', sheet);
return sheet;
}