vote up 2 vote down star
1

I want to run the following code:

ajaxUpdate(10);

With a delay of 1 second between each iteration. How can I do this?

flag

Hope your server can handle the beating. :) – epascarello Jan 20 at 15:14

6 Answers

vote up 0 vote down check

You can also do it with

setTimeout(function() {ajaxUpdate(10)}, 1000);
link|flag
this will be one time only, not iterative – annakata Jan 20 at 9:03
This is the right one for this situation because b4 each iteration i want to check a condition, and only if it is met do i want the timer to be set 4 the next iteration. With setInterval it would run auto. without checking condition which i dont want. And this 1 is more simpler – Click Upvote Jan 21 at 0:57
vote up 13 vote down
var i = window.setInterval( function(){ 
          ajaxUpdate(10); 
 }, 1000 );

This will call ajaxUpdate every second, until such a time it is stopped.

And if you wish to stop it later:

window.clearInterval( i );

If you wish to only run it once however,

var i = window.setTimeout( function(){ 
          ajaxUpdate(10); 
 }, 1000 );

Will do the trick, and if you want to stop it running before it gets around to running once

window.clearTimeout(i);

The "window" prefix is not strictly nessecary, but its a good idea, because you never know when somebody else might like to create something else with the same name in visible scope that behaves differently.

For a complete reference on this, I always find MDC Very Helpful:

Also, you may wish to read this article on timers by John Resig,

link|flag
You should use window.setInterval() instead of only setInterval() (same for clearInterval) – gs Jan 20 at 8:43
linking to the javascript docs would make a nice addition: developer.mozilla.org/en/DOM/… – Már Örlygsson Jan 20 at 8:50
Why should you prepend it with "window." ? – Vatos Jan 20 at 9:13
You don't have to, its just a good idea, like I said in my statement. – Kent Fredric Jan 20 at 9:15
vote up 4 vote down

You can use setInterval() for that. Create an anonymous function to be called, and use the time in milliseconds:

var myInterval = window.setInterval(function() { ajaxUpdate(10); }, 1000);
link|flag
You should use window.setInterval() instead of only setInterval() – gs Jan 20 at 8:43
Updated - thanks @gs – Greg Jan 20 at 8:48
do I need to use var myInterval=... or can I just call the code on the right side of the = and it will work? – Click Upvote Jan 20 at 8:50
You only need "var myInterval = " if you want to stop it again at some point – Greg Jan 20 at 8:51
It will work without the assignment, but as Kent Fredric explains in his answer, the assignment gives you the option of canceling the interval at a later time. – Már Örlygsson Jan 20 at 8:52
show 15 more comments
vote up 0 vote down

You can use too jQuery Timers: http://plugins.jquery.com/project/timers

link|flag
vote up 0 vote down

You can use this JavaScript Timer class.

link|flag
vote up -1 vote down

You can use the function setTimeout(String fonc, Integer delay). For example, to execute your code each second you can do :

window.setTimout("ajaxUpate",100);

Hope i answer to your question ;)

link|flag
oops, everybody answers in the same minute ! – damdec Jan 20 at 8:43
Using strings is highly not recommended, its too ambiguous. – Kent Fredric Jan 20 at 8:43
Also, in your example, ajaxUpdate will get called with a semi-random value, not the fixed value '10' he requested. – Kent Fredric Jan 20 at 8:47
Ok, thanks for the comment, i didn't known it works with a function as first paramter. – damdec Jan 20 at 8:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.