I am using setInterval(fname, 10000); to call a function every 10 secs in javascript. Is it possible to stop calling the calling on some event?
I want the user to be able to stop the repeated refresh of data.
|
I am using I want the user to be able to stop the repeated refresh of data.
| |||
|
feedback
|
|
See the docs for | ||||
|
feedback
|
|
if you setup the return of setInterval to a variable you can use clearInterval to stop it.
| |||
|
feedback
|
|
You can set a new variable and have it increment ++ (count up one) every time it runs, then use a conditional statement to end it:
I hope that helps... also I hope thats right :P | ||||
|
feedback
|