vote up 5 vote down star
1

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.

flag

53% accept rate

3 Answers

vote up 24 vote down check

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|flag
vote up 4 vote down

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

var myTimer = setInterval(...);
clearInterval(myTimer);
link|flag
vote up -1 vote down

ya cool information thanks

link|flag

Your Answer

Get an OpenID
or

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