Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to open a window (in IE 4.0+) without a border?

Status
Not open for further replies.

jking2z

Programmer
Jul 22, 2000
1
US
Does anyone know how to open a window (in IE 4.0+) without a border, toolbar, scrollbars, and the top bar?<br>--Jim King<br><A HREF="mailto:jim@webteksolutions.com">jim@webteksolutions.com</A><br>
 
its possible to have a window opened without all of the above, except for the border, you cant remove the border.(I've never seen it done) <p>Karl<br><a href=mailto:kb244@kb244.8m.com>kb244@kb244.8m.com</a><br><a href= </a><br>Experienced in : C++(both VC++ and Borland),VB1(dos) thru VB6, Delphi 3 pro, HTML, Visual InterDev 6(ASP(WebProgramming/Vbscript)<br>
 
jking2z,<br><br>&lt;body scroll=no toolbars=no&gt;<br><br>
 
use<br><br>window.open(&quot;something.html&quot;,&quot;&quot;,&quot;&quot;)<br><br>in javascript <p>theEclipse<br><a href=mailto:eclipse_web@hotmail.com>eclipse_web@hotmail.com</a><br><a href=robacarp.webjump.com>robacarp.webjump.com</a><br>**-Trying to build a documentation of a Javascript DOM, crossbrowser, of course. E-mail me if you know of any little known events and/or methods, etc.
 
first off, snt's proposal smells of IE-only code... theEclipse's code looks right, but you may want to specify a name for DOM referencing (in the first pair of empty quotes) and a page size (in the second).<br><br>If you're unsure as to how to look up the width or height, you can get a basic idea from my JavaScript FAQ. It wasn't written for this, but you've got the basic idea (look for the &quot;window.open()&quot; line)... Best of luck! <p>Liam Morley<br><a href=mailto:lmorley@wpi.edu>lmorley@wpi.edu</a><br><a href=] :: imotic :: website :: [</a><br>"light the deep, and bring silence to the world.<br>
light the world, and bring depth to the silence.
 
imotic,<br>&lt;body scroll=no toolbars=no&gt; works in both IE and Netcrap. <br><br>SNT<br><br>
 
sorry.. I guess what I meant is that it's not standard. Take a look at <A HREF=" TARGET="_new"> , you'll see that it's not even listed as a deprecated feature. Which means it's probably not supported in NN6... <p>Liam Morley<br><a href=mailto:lmorley@wpi.edu>lmorley@wpi.edu</a><br><a href=] :: imotic :: website :: [</a><br>"light the deep, and bring silence to the world.<br>
light the world, and bring depth to the silence.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top