-
Time intervals
I need a small script (time interval script) that will execute another javascript when time elapses.
For example, after 30 seconds greeting script appears.
Any info, will be welcomed.
-
-
Let's say your greeting script is started by a function called greet(). Then just use this:
setTimeout=("greet()",30000);
30000 is 30 seconds counted in milliseconds, the time unit accepted by the setTimeout command.
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks