up vote 51 down vote favorite
12
share [g+] share [fb]

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

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

link|improve this question

53% accept rate
feedback

3 Answers

up vote 112 down vote accepted

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().

link|improve this answer
feedback

if you setup the return of setInterval to a variable you can use clearInterval to stop it.

var myTimer = setInterval(...);
clearInterval(myTimer);
link|improve this answer
feedback

You can set a new variable and have it increment ++ (count up one) every time it runs, then use a conditional statement to end it:

var varCounter = 0;
var varName = function(){
     if(varCounter <= 10) {
          varCounter++;
          /* your code goes here */
     } else {
          clearInterval(varName);
     }
};

$(document).ready(function(){
     setInterval(varName, 10000);
});

I hope that helps... also I hope thats right :P

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.