pop up window

windows

Guest
is there a way to make a pop up that loads when the page loads not on a click, without using javascript. and if that is possible, is there a way to make this pop up window, have no address bar at the top, and none of those other buttons?<br />
<br />
Thanks<br />
jstrife :confused:<!--content-->The only way I know of to make a pop up window in HTML is <a href=http://www.webdeveloper.com/forum/archive/index.php/"site.html" target="_blank">.<br />
<br />
To make a pop up with no menus do this:<br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"" onClick="newWin = window.open('site.html','newWin','menubar=0,toolbar=0,directories=0,status=1,location=0,width=600,he ight=350');"><!--content-->Use instead:<br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"site.html" onclick="window.open(this.href,'newWin','width=600,height=350'); return false"><!--content-->Originally posted by jstrife <br />
... without using javascript ...is there a way to make this pop up window, have no address bar at the top, and none of those other buttons?<br />
<br />
<br />
No, not without using JS.<br />
And in many cases not even with JavaScript. Eg my browser allows me to turn off the ability for JavaScript to remove the adressbar and other such controlls.<!--content-->
 
Back
Top