Setting a Cookie
Question: How do I set a cookie from JavaScript?
Answer:
To set a cookie that will expire in nDays
,
you can use the following function:
function SetCookie(cookieName,cookieValue,nDays) {
var today = new Date();
var expire = new Date();
if (nDays==null || nDays==0) nDays=1;
expire.setTime(today.getTime() + 3600000*24*nDays);
document.cookie = cookieName+"="+escape(cookieValue)
+ ";expires="+expire.toGMTString();
}
JavaScripter.net.
Copyright
© 1999-2006, Alexei Kourbatov