Is there anyway to implement a timer for JQuery, eg. every 10 seconds it needs to call a js function.
I tried the following
window.setTimeout(function() {
alert('test');
}, 10000);
but this only executes once and then never again.
|
Is there anyway to implement a timer for JQuery, eg. every 10 seconds it needs to call a js function. I tried the following
but this only executes once and then never again. |
||||
|
|
|
You can use this:
|
|||||||||||||||||
|
|
||||
|
|
|
Might want to check out jQuery Timer to manage one or multiple timers. http://code.google.com/p/jquery-timer/
Then you can control it with:
|
|||||
|
|
|
setInterval is the function you want. That repeats every x miliseconds.
|
||||
|
|
|
jQuery 1.4 also includes a .delay( duration, [ queueName ] ) method if you only need it to trigger once and have already started using that version.
Ooops....my mistake you were looking for an event to continue triggering. I'll leave this here, someone may find it helpful. |
||||
|
|
|
try jQueryTimers, they have great functionality for polling |
||||
|
|
|
|||||
|
|
I was just experimenting with jQuery and wrote a simple timer / stop watch ... http://bornagainprogrammer.net/2010/08/19/a-simple-stop-watch-timer-using-jquery/ |
|||
|
|