Thread: Javascript
View Single Post
04-02-2006, 09:02 AM
#4
Salathe is offline Salathe
Salathe's Avatar
Status: Community Archaeologist
Join date: Jul 2004
Location: Scotland
Expertise: Software Development
Software: vim, PHP
 
Posts: 3,820
iTrader: 25 / 100%
 

Salathe will become famous soon enough

Send a message via MSN to Salathe

  Old

Jonny gets the gold star! You can set an event to happen in the future using the setTimeout (or repeatedly, with setInterval) function.

Code:
// Alerts 'Hello World' after two seconds
window.setTimeout("alert('Hello World')", 2000)