DekGenius.com
Team LiB   Previous Section   Next Section
Window.clearInterval( ) stop periodically executing code

Availability

JavaScript 1.2

Synopsis

window.clearInterval(intervalId)

Arguments

intervalId

The value returned by the corresponding call to setInterval( ).

Description

clearInterval( ) stops the repeated execution of code that was started by a call to setInterval( ). intervalId must be the value that was returned by a call to setInterval( ).

See Also

Window.setInterval( )

    Team LiB   Previous Section   Next Section