Click to See Complete Forum and Search --> : pop up window
jstrife
02-05-2003, 01:46 PM
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?
Thanks
jstrife :confused:
Zach Elfers
02-05-2003, 01:50 PM
The only way I know of to make a pop up window in HTML is <a href="site.html" target="_blank">.
To make a pop up with no menus do this:
<a href="" onClick="newWin = window.open('site.html','newWin','menubar=0,toolbar=0,directories=0,status=1,location=0,width=600,he ight=350');">
Charles
02-05-2003, 01:56 PM
Use instead:
<a href="site.html" onclick="window.open(this.href,'newWin','width=600,height=350'); return false">
Stefan
02-06-2003, 04:59 AM
Originally posted by jstrife
... 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?
No, not without using JS.
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.