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

I want to do two things using a countdown in jQuery. I have looked at the delay method but it won't be applied to an element like shown in the docs.

What I want to do is wait 2 hours and then 30 seconds before the timeout do function A and then after that do function B.

During function A I will be showing a modal where I want to show a message saying you have 30 seconds to respond. And show the 30 counting down before executing function B.

What would be the best and simplest way of doing all of this?

Thanks

share|improve this question

3 Answers

up vote 1 down vote accepted

If you don't want to get too messy code-wise, use a countdown plugin such as jCounter and run it for 2 hours and set its fallback (fallback A) to start another instance of the countdown for 30 seconds with the second fallback (fallback B).

Example:

$('.countdown').jCounter({
  customDuration: 60*60*2, //2 hours
  format: 'hh:ss', //display hours and seconds
  fallback: function() { $('.timeLeft').jCounter({ // fallback A
    customDuration: 30, // run for 30 seconds
    format: 'ss', // display only seconds
    fallback : function() { alert("30 seconds are up!") } // fallback B
  }); }
});
share|improve this answer

I had to do something similar recently. I wrote my own, then spotted:

http://pure-essence.net/2010/02/14/jquery-session-timeout-countdown/

Hope this helps.

share|improve this answer

If using version 1.7 or 1.7.1 of jQuery, my suggestion would be:

a) A simple timeout for the first countdowm (the 2 hour one); unless you
   want a countdown displayed.

b) for the 30 seconds, use the $.when feature to  fire the second function:

   $.when(count-down-reaches-zero-or-user-responds).done(function () {
       B
   })

If you need help on writing a simple displayable countdown, you can take a look at the code here ( http://zequinha-bsb.int-domains.com/meetings.html )

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.