Window.clearImmediate()
Non-standard: This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
This method clears the action specified by window.setImmediate.
Note: This method is not expected to become standard, and is only implemented by recent builds of Internet Explorer and Node.js 0.10+. It meets resistance both from Gecko (Firefox) and Webkit (Google/Apple).
Syntax
window.clearImmediate( immediateID )
where immediateID is a ID returned by window.setImmediate.
Examples
let immediateID = setImmediate(() => { // Run some code } document.getElementById("button") .addEventListener(() => { clearImmediate(immediateID); });
Specifications
Not part of any current specifications. The Efficient Script Yielding specification is no longer being worked on.
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
clearImmediate |
No |
12-79 |
No |
10 |
No |
No |
No |
No |
No |
No |
No |
No |
See also
- A polyfill of
clearImmediateis available incore-js Window.setImmediate()
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Window/clearImmediate