The clearInterval()
method of the WindowOrWorkerGlobalScope
mixin cancels a timed, repeating action which was previously established by a call to setInterval()
.
scope.clearInterval(intervalID)
intervalID
setInterval()
.It's worth noting that the pool of IDs used by setInterval()
and setTimeout()
are shared, which means you can technically use clearInterval()
and clearTimeout()
interchangeably. However, for clarity, you should avoid doing so.
See the setInterval()
example.
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of 'WindowOrWorkerGlobalScope.clearInterval()' in that specification. | Living Standard | Method moved to the WindowOrWorkerGlobalScope mixin in the latest spec. |
WHATWG HTML Living Standard The definition of 'clearInterval()' in that specification. | Living Standard |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 1.0 | 1.0 (1.7 or earlier) 52 (52)[1] | 4.0 | 4.0 | 1.0 |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | 1.0 | 1.0 | 1.0 (1) 52.0 (52)[1] | 6.0 | 6.0 | 1.0 |
[1] clearInterval()
now defined on WindowOrWorkerGlobalScope
mixin.
WindowOrWorkerGlobalScope.setTimeout
WindowOrWorkerGlobalScope.setInterval
WindowOrWorkerGlobalScope.clearTimeout
Window.requestAnimationFrame
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/clearInterval