sorry for a question to ask... Below is the tutorial of getCookie code from W3C School
Would someone teach me what is the function of while (c.charAt(0)==' ') c = c.substring(1); , and since it is while loop, why won't it keep repeating and stuck there?
Thanks...
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 "";
}
}