Click to See Complete Forum and Search --> : timer


sharpasknives
02-03-2003, 12:43 PM
I want to set up a timer in my script. How is this done?

havik
02-03-2003, 01:06 PM
Hi,

I'm too lazy to write a detailed reply, but check out this awesome tutorial:

http://www.mojavelinux.com/forum/viewtopic.php?t=135

khalidali63
02-03-2003, 01:07 PM
read the setTimout() and setInterval() window objects function in JavaScript.

try this link

http://hotwired.lycos.com/webmonkey/98/29/index2a_page2.html?tw=programming

cheers

Khalid

pyro
02-03-2003, 01:07 PM
This will run the function() after 2 seconds

setTimout("function()",2000)

sharpasknives
02-04-2003, 06:39 AM
ty :)