This method clears the action specified by window.setImmediate
.
window.clearImmediate(immediateID)
where immediateID is a ID returned by window.setImmediate
.
var immediateID = setImmediate(function () { // Run some code } document.getElementById("button").addEventListener(function () { clearImmediate(immediateID); }, false);
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | No | ? | No | Yes | No | No |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | No | ? | ? | No | No | No | ? |
Specification: Efficient Script Yielding
© 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/window/clearImmediate