The clearInterval() method of the WindowOrWorkerGlobalScope mixin cancels a timed, repeating action which was previously established by a call to setInterval().
scope.clearInterval(intervalID)
intervalIDsetInterval().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 |
|---|---|---|
| HTML Living Standard The definition of 'WindowOrWorkerGlobalScope.clearInterval()' in that specification. | Living Standard | Method moved to the WindowOrWorkerGlobalScope mixin in the latest spec. |
| HTML Living Standard The definition of 'clearInterval()' in that specification. | Living Standard |
| Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|---|
| Basic support | 1.0 | (Yes) | 1.0 (1.7 or earlier) 52 (52)[1] | 4.0 | 4.0 | 1.0 |
| Feature | Android | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|---|
| Basic support | 1.0 | 1.0 | (Yes) | 1.0 (1) 52.0 (52)[1] | 6.0 | 6.0 | 1.0 |
[1] clearInterval() now defined on WindowOrWorkerGlobalScope mixin.
WindowOrWorkerGlobalScope.setTimeoutWindowOrWorkerGlobalScope.setIntervalWindowOrWorkerGlobalScope.clearTimeoutWindow.requestAnimationFrame
© 2005–2018 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