javascript popups

dragon2309

P.I Dragon
hi, if i have a bit of javascript to open another page on page load, how do i stop it from dispalying things like the address bar and nav buttons etc.... basically im creating a legitimate popup for a site but dont wnat the address bar etc...

thanks, dragon
 
this should do what you want:
<a href="#" onclick="window.open('page_to_open_goes_here','','scrollbars=no,menubar=no,height=400,width=300,resizable=no,toolbar=no,location=no,status=no')">Open Popup Windows</a>
It i spretty much self explanatory

Lee :D
 
should be:
<body onload="window.open('page_to_open_goes_here','',' scrollbars=no,menubar=no,height=400,width=300,resi zable=no,toolbar=no,location=no,status=no')">
i tihnk
But it may require a little messing to get work

Lee :D
 
Back
Top