How can I repeat a function doSomething() every 5 seconds.
I also need code that will make it stop doing it.
And code to on-the-fly adjust the frequency.
|
How can I repeat a function doSomething() every 5 seconds. I also need code that will make it stop doing it. And code to on-the-fly adjust the frequency. |
|||
|
|
|
setTimeout() will only launch the command once. In this case, setInterval() is your friend.
from code...
|
|||||||||||
|
|
Use
for repeated action and
to stop that |
|||
|
Try jQuery Timers |
|||||
|
|
You could use setTimeout() for this. |
|||
|
|
|
|||
|