I have the following:
window.setTimeout(function() {
window.location.href = 'file.php';
}, 115000);
How can I, via a .click function, reset the counter midway through the countdown?
|
I have the following:
How can I, via a .click function, reset the counter midway through the countdown? |
||||
|
|
|
You can store a reference to that timeout, and then call
|
||||
|
|
|
clearTimeout() and feed the reference of the setTimeout, which will be a number. Then re-invoke it:
In this example, if you don't click on the body element in 5 seconds the background color will be black. Reference:
Note: setTimeout and clearTimeout are not ECMAScript native methods, but Javascript methods of the global window namespace. |
||||
|
|
|
To reset the timer, you would need to set and clear out the timer variable
|
||||
|
|
Something along those lines! |
|||
|
|
|
You will have to remember the timeout "Timer", cancel it, then restart it:
|
|||
|
|
|
|||
|
|
|
here is a fiddle i created for someone in #jquery based off this response, enjoy. |
|||
|
|
|
This timer will fire a "Hello" alertbox after 30 seconds. However, everytime you click the reset timer button it clears the timerHandle then re-sets it again. Once it's fired, the game ends.
|
|||
|
|