/ Published in: JavaScript
URL: http://www.quirksmode.org/js/cookies.html
The cookie expires the number of days from the time it is set.
Expand |
Embed | Plain Text
function createCookie(name,value,days) { if (days) { var date = new Date(); date.setTime(date.getTime()+(days*24*60*60*1000)); var expires = "; expires="+date.toGMTString(); } else var expires = ""; document.cookie = name+"="+value+expires+"; path=/"; }
You need to login to post a comment.
