Answers for "how i can stop intrval in js"

4

Stop setInterval call in JavaScript

var refreshIntervalId = setInterval(fname, 10000);
/* later */
clearInterval(refreshIntervalId);
// See the docs for setInterval() and clearInterval()
Posted by: Guest on August-02-2021

Code answers related to "how i can stop intrval in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language