How can you have a pop up open 10 seconds after the user opens a web page?
Printable View
How can you have a pop up open 10 seconds after the user opens a web page?
that should do it!Code:<script>
function windowPop(){
window.open("popup.html","","");
}
setTimeout("windowPop()",10000);
</script>
the 10000 is milliseconds.
1 second = 1000 milliseconds
1/10 second = 100 milliseconds .......
:)
Thank you, works great1