Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to set up a cookie that never expires. Would that even be possible?

 document.cookie = "name=value; expires=date; path=path;domain=domain; secure";

I don't want to make the date really large, I am just wondering if there was a value for the expires parameter on the cookie that told it never to expire.

Thanks.

share|improve this question
Why don't you want make the date large? – AnthonyWJones Feb 10 '09 at 14:52
2  
making the date large makes me feel as if I was cheating. If that's the only way to go, I guess I will have to make the date large. – Jose Vega Feb 10 '09 at 14:56

2 Answers

up vote 38 down vote accepted

Nope. Can't be done. The 'way' of doing that is just making the expiration date be like 2020.

share|improve this answer

There is no syntax for what you want. Not setting expires causes the cookie to expire at the end of the session. The only option is to pick some arbitrarily large value. Be aware that some browsers have problems with dates past 2038 (when unix epoch time exceeds a 32-bit int).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.