Hi,
I have a ajax javascript method that pulls data from a page etc.
I want this process to run on a timed interval, say every minute. But I don't want it to loop forever, so max out at 3 times.
What is the best way to implement this?
|
1
|
Hi, I have a ajax javascript method that pulls data from a page etc. I want this process to run on a timed interval, say every minute. But I don't want it to loop forever, so max out at 3 times. What is the best way to implement this?
|
||
|
|
Like this:
|
||||||
|
|
|
You can use setInterval() and then inside the called function keep a count of how many times you've run the function and then clearInterval(). Or you can use setTimeout() and then inside the called function call setTimeout() again until you've done it 3 times. |
||
|
|
|
|
|
||
|
|
|
|
Use setInterval, be sure to get a reference.
Also, have a global counter
Inside the function called by the setIntervale do:
|
||
|
|
|
|
A reusable approach
|
||
|
|
|
|
A closure-based solution, using
EDIT: Another way of expressing the same, using
Maybe the latter is a bit easier to understand. In the |
|||
|
|
|
This anonymous function (it doesn't introduce any new globals) will do what you need. All you have to do is replace
|
||
|
|
|
|
To extend Tomalak function: If you want to know how many cycles are left:
and use:
|
||
|
|
setInterval. – SLaks Aug 7 at 16:29