|
-
Jan 4th, 2002, 09:51 AM
#1
Thread Starter
Hyperactive Member
Pop Up Window on Timer
How can you have a pop up open 10 seconds after the user opens a web page?
-
Jan 4th, 2002, 10:39 AM
#2
Hyperactive Member
Code:
<script>
function windowPop(){
window.open("popup.html","","");
}
setTimeout("windowPop()",10000);
</script>
that should do it!
the 10000 is milliseconds.
1 second = 1000 milliseconds
1/10 second = 100 milliseconds .......
-
Jan 4th, 2002, 11:07 AM
#3
Thread Starter
Hyperactive Member
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
|
Click Here to Expand Forum to Full Width
|