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 "";
Component is throwing "ReferenceError":Document is not defined error. How can we handle this?
Views
Replies
Total Likes
Hi,
It could be issue with your code calling before document load, but not sure.
could you try using jquery to get cookie if helps
e.g. alert( $.cookie("example") );
function getCookie(cname) {
var name = cname + "=";
alert($.cookie(name))
}
Views
Replies
Total Likes
See this thread on this subject -- html - Set cookie and get cookie with JavaScript - Stack Overflow
Hello All,
In this same context can you people help me how to get "login-token" in js in aem 6.3.
Thanks
Qamar
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies