Table of contents
- 1. Summary
- 2. Syntax
- 3. Example
- 4. Specification
Summary
Cancels repeated action which was set up using setInterval()
.
Syntax
window.clearInterval(intervalID)
intervalID
is the identifier of the repeated action you want to cancel. This ID is returned from setInterval()
.
Example
See the setInterval()
example.
Specification
DOM Level 0. Not part of any standard.