Forum Moderators: open
Okay! I have a pop-up window (400 x 700)that now opens up on click, however can I have this window open seconds after the page loads?
<script type="text/javascript">
windowevent=window.setTimeout("NewWindow()",5000);
function NewWindow() { window.open('page2.html') } </script>
Thank you for that code; however. I need to make the window a certain size e.g. 400 wide x 700.
newWin = setTimeout( "window.open('page2.html','winname','width=400,height=700')" ,5000);
[mcli.dist.maricopa.edu...]