TOC PREV NEXT INDEX

Put your logo here!


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. 


mozilla.org | mailto:oeschger | bug 93108
TOC PREV NEXT INDEX