'clearTimeout()' Syntax, Parameters and Note : clearTimeout « Javascript Methods « JavaScript Reference

'clearTimeout()' Syntax, Parameters and Note

Note:

Removes a timeout initialized by the setTimeout() method. 
    
Syntax:
    
window.clearTimeout(param1)


Parameters:
    param1   Required; the numeric timeout ID previously returned by the 
                       window.setTimeout() method.

    

      
      








Related examples in the same category

1.'clearTimeout()' Example
2.'clearTimeout()' is applied to