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
.
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
BCD tables only load in the browser