DHTML Methods
Evaluates an expression after a specified number of milliseconds has elapsed.
iTimerID = window.setTimeout ( vCode, iMilliSeconds
[ , sLanguage ] )
vCode |
Required. Function pointer specifying the code to be executed at the specified interval. |
iMilliSeconds |
Required. Integer specifying the number of milliseconds. |
sLanguage |
Optional. String specifying any one of the possible values for the language attribute. |
Integer. Returns an identifier that is used to cancel the evaluation with the clearTimeout method.
window