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.
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.
Mike,
Please read up on JavaScript setInterval and setTimeOut functions .... That should get the thought process started.
Best
Bruce
Hi Mike,
setTimeout(function()
What do you want to do here... and time.. as miliseconds
);
Goodluck