integrated EVERYTHING!
This commit is contained in:
15
js/cookieHandling.js
Normal file
15
js/cookieHandling.js
Normal file
@@ -0,0 +1,15 @@
|
||||
function getCookie(cname) {
|
||||
let name = cname + "=";
|
||||
let decodeCookie = decodeURIComponent(document.cookie);
|
||||
let ca = decodeCookie.split(';');
|
||||
for (let i = 0; i < ca.length; i++) {
|
||||
let c = ca[i];
|
||||
while (c.charAt(0) == ' ') {
|
||||
c = c.substring(1);
|
||||
}
|
||||
if (c.indexOf(name) == 0) {
|
||||
return c.substring(name.length, c.length);
|
||||
}
|
||||
}
|
||||
return "";
|
||||
}
|
||||
Reference in New Issue
Block a user