Friday, 26 January 2018

Stop setInterval call in JavaScript



I am using setInterval(fname, 10000); to call a function every 10 seconds in JavaScript. Is it possible to stop calling it on some event?



I want the user to be able to stop the repeated refresh of data.


Answer



setInterval() returns an interval ID, which you can pass to clearInterval():




var refreshIntervalId = setInterval(fname, 10000);

/* later */
clearInterval(refreshIntervalId);


See the docs for setInterval() and clearInterval().


No comments:

Post a Comment

casting - Why wasn't Tobey Maguire in The Amazing Spider-Man? - Movies & TV

In the Spider-Man franchise, Tobey Maguire is an outstanding performer as a Spider-Man and also reprised his role in the sequels Spider-Man...