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

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -