Stop setInterval call in JavaScript -


i using setinterval(fname, 10000); call function every 10 seconds in javascript. possible stop calling on event?

i want user able stop repeated refresh of data.

setinterval() returns interval id, can pass clearinterval():

var refreshintervalid = setinterval(fname, 10000);  /* later */ clearinterval(refreshintervalid); 

see docs setinterval() , clearinterval().


Comments

Popular posts from this blog

c - How to retrieve a variable from the Apache configuration inside the module? -

c# - Constructor arguments cannot be passed for interface mocks -

python - malformed header from script index.py Bad header -