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.

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

Specification Status Comment
Efficient Script Yielding
The definition of 'setImmediate' in that specification.
Editor's Draft Initial definition.

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
clearImmediate
Non-standard
Chrome No support NoEdge No support 12 — 79Firefox No support NoIE Full support YesOpera No support NoSafari No support NoWebView Android No support NoChrome Android No support NoFirefox Android No support NoOpera Android No support NoSafari iOS No support NoSamsung Internet Android No support No

Legend

Full support
Full support
No support
No support
Non-standard. Expect poor cross-browser support.
Non-standard. Expect poor cross-browser support.

See also