IE Window Open Remove Toolbar, etc

S

Steve

How do you remove the tool bar, address, bar, etc from a link to a new page? Thank you!
 
T

Thomas A. Rowe

You have to use JavaScript to launch the Windows.

See Spawn at http://www.jimcoaddins.com

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================


Steve said:
How do you remove the tool bar, address, bar, etc from a link to a new
page? Thank you!
 
J

Jim Buyens

-----Original Message-----
How do you remove the tool bar, address, bar, etc from a
link to a new page? Thank you!

Code the link as, for example:

<a href="javascript:window.open("Sample.htm",null,
"height=200,width=400,status=no,toolbar=no,menubar=no,locat
ion=no");">

For more info on the window.open method, browse:

http://msdn.microsoft.com/workshop/author/dhtml/reference/m
ethods/open_0.asp

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 
Top