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.
|
1
|
I am using I want the user to be able to stop the repeated refresh of data.
|
||
|
|
|
|
See the docs for |
|||
|
|
|
|
if you setup the return of setInterval to a variable you can use clearInterval to stop it.
|
||
|
|
|
|
ya cool information thanks |
||
|
|