up vote 10 down vote favorite
share [g+] share [fb]

I have a few places where I use the line below to clear out a status for example. I have a few of these that hang out for 10 seconds or more and if the user gets clicking around the action can occur at incorrect time intervals. Is it possible to cancel or kill this w/ some jQuery or JavaScript so I don't have this process hanging around?

window.setTimeout(function() { removeStatusIndicator(); }, statusTimeout);
link|improve this question

feedback

1 Answer

up vote 23 down vote accepted
var timer1 = window.setTimeout(function() { removeStatusIndicator(); }, statusTimeout);
clearTimeout(timer1)
link|improve this answer
Actually it's window.clearTimeout(…) – Georg Schölly Jan 16 '09 at 21:18
6  
window is just the name of the global namespace, so it's not really necessary (for either setTimeout or clearTimeout). – Matthew Crumley Jan 16 '09 at 21:31
feedback

Your Answer

 
or
required, but never shown

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