clearTimeout()
The global clearTimeout()
method cancels a timeout previously established
by calling setTimeout()
.
Syntax
clearTimeout(timeoutID)
Parameters
timeoutID
-
The identifier of the timeout you want to cancel. This ID was returned by the corresponding call to
setTimeout()
.
It's worth noting that the pool of IDs used by
setTimeout()
and
setInterval()
are shared, which
means you can technically use clearTimeout()
and
clearInterval()
interchangeably. However, for clarity, you should avoid doing so.
Example
Run the script below in the context of a web page and click on the page once. You'll see a message popping up in a second. If you click the page multiple times in one second, the alert only appears once.
const alarm = {
remind: function(aMessage) {
alert(aMessage);
this.timeoutID = undefined;
},
setup: function() {
if (typeof this.timeoutID === 'number') {
this.cancel();
}
this.timeoutID = setTimeout(function(msg) {
this.remind(msg);
}.bind(this), 1000, 'Wake up!');
},
cancel: function() {
clearTimeout(this.timeoutID);
}
};
window.addEventListener('click', () => alarm.setup() );
Notes
Passing an invalid ID to clearTimeout()
silently does nothing; no
exception is thrown.
Specifications
Specification |
---|
HTML Standard # dom-cleartimeout-dev |
Browser compatibility
BCD tables only load in the browser