Timer function in javascript

by GOKILAVANI 2014-04-29 09:25:22

Javascript TimerRolling eyes
Very Happy
setTimeout()
Calls a function or executes a code snippet after specified delay.
setInterval()
Calls a function or executes a code snippet repeatedly, with a fixed time delay between each call to that function.
clearTimeout()
Clears the delay set by setTimeout().
clearInterval()
Cancels repeated action which was set up using setInterval().
1255
like
0
dislike
0
mail
flag

You must LOGIN to add comments