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
Specification | Status | Comment |
---|---|---|
Efficient Script Yielding The definition of ' setImmediate ' in that
specification. |
Editor's Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser