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++: Boost interprocess memory mapped file error -

python - IO.UnsupportedOperation: Not Writable -

python - Selecting distinct values from a column in Peewee -