vote up 2 vote down star

I want to set a cookie with javascript. Easy enough. Lets say I set it for 15 minutes.

How would I make a count down timer show to show when the cookie expires? And even if they left the page I would want it to keep counting and when they come back to the page it would still have been counting down.

Sorry for the poor explanation. But I'm fairly sure its possile.

Thanks

flag

74% accept rate

1 Answer

vote up 3 vote down

Store the time stamp of now + 15 minutes within a cookie if there is no cookie. Write a simple script that checks the difference between now and the timestamp every second.

Edit: sample code

// 200 seconds countdown
var countdown = 200; 

//current timestamp
var now   = Date.parse(new Date());

//ready should be stored in your cookie
var ready = Date.parse(new Date (now + countdown  * 1000)); // * 1000 to get ms


//every 1000 ms
setInterval(function()
{
    var sec = ( ready - Date.parse(new Date()) )/1000;
    document.title = sec + " seconds left";

},1000);
link|flag
1  
And just to add - Use setInterval() and NOT setTimeout() for timers. Really simplifies code IMO – Daniel S Sep 28 at 16:03
Example perhaps? – Ben Shelock Sep 28 at 16:11
I added a really short sample code. Let me know if it works. – Ghommey Sep 29 at 9:36

Your Answer

Get an OpenID
or

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