Page 1 of 1

Countdown Timer

Posted: Tue Mar 24, 2015 9:58 pm
by Mike6979865

I need to implement a countdown timer. Do you have any suggestions where to start? I need to set it at 5 min, with a reset button and Start button, and once it reach 5 minutes to alert.


Countdown Timer

Posted: Tue Mar 24, 2015 10:25 pm
by Bruce Stuart

Mike,

Please read up on JavaScript setInterval and setTimeOut functions .... That should get the thought process started.

Best
Bruce


Countdown Timer

Posted: Wed Mar 25, 2015 12:29 am
by She

Hi Mike,

setTimeout(function()

What do you want to do here... and time.. as miliseconds

);

Goodluck