TOC PREV NEXT INDEX

domref



window.clearInterval()


Clears a delay that's been set for a specific function.

Syntax

window.clearInterval(intervalID)
 

Parameters

intervalID is the ID of the specific interval you want to clear.

Example

window.clearInterval(animID);
 

Notes

See also window.setInterval().

Specification

DOM Level 0. Not part of specification.
 


Netscape Communications
http://developer.netscape.com
TOC PREV NEXT INDEX