TOC PREV NEXT INDEX

domref



window.clearTimeout()


Clears the delay set by window.setTimeout().

Syntax

window.clearTimeout(timeoutID)
 

Parameters

timeoutID is the ID of the timeout you wish you clear.

Example

window.clearTimeout(inactive_ID);
 

Notes

The ID for the timeout is returned by the window.setTimeout() function.

Specification

DOM Level 0. Not part of specification.
 


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