46 _cookieValue = [
self _readCookieValue];
84 var
expires =
"; expires=" + date.toGMTString();
89 domain =
"; domain=" + domain;
94 document.cookie = _cookieName +
"=" + value +
expires +
"; path=/" + domain;
105 var nameEQ = _cookieName +
"=",
106 ca = document.cookie.split(
';');
108 for (var i = 0; i < ca.length; i++)
112 while (c.charAt(0) ==
' ')
113 c = c.substring(1, c.length);
115 if (c.indexOf(nameEQ) == 0)
116 return c.substring(nameEQ.length, c.length);
A representation of a single point in time.
An immutable string (collection of characters).