How do I hide Toolbars

G

Guest

I have built a web app which has a number of help pages that are small
windows that pop up when the user clicks a hyperlink.

My question is how do I get ride of the usual toolbars that IE has basically
I want to hide the address & standard toolbar when this particular window
pops up

Tia
 
K

Kevin Spencer

The JavaScript window.open() method takes a number of parameters that can be
used to customize the window:

oNewWindow = window.open( [sURL] [, sName] [, sFeatures] [, bReplace])

Parameters:

sURL: URL of page to open in new window.
sName: The name of the window, which can be used to get a handle on it
from the parent
sFeatures:
channelmode = { yes | no | 1 | 0 } Specifies whether to display the window
in theater mode and show the channel band. The default is no.
directories = { yes | no | 1 | 0 } Specifies whether to add directory
buttons. The default is yes.
fullscreen = { yes | no | 1 | 0 } Specifies whether to display the browser
in full-screen mode. The default is no. Use full-screen mode carefully.
Because this mode hides the browser's title bar and menus, you should always
provide a button or other visual clue to help the user close the window.
ALT+F4 closes the new window. A window in full-screen mode must also be in
theater mode (channelmode).
height = number Specifies the height of the window, in pixels. The minimum
value is 100.
left = number Specifies the left position, in pixels. This value is relative
to the upper-left corner of the screen. The value must be greater than or
equal to 0.
location = { yes | no | 1 | 0 } Specifies whether to display the input field
for entering URLs directly into the browser. The default is yes.
menubar = { yes | no | 1 | 0 } Specifies whether to display the menu bar.
The default is yes.
resizable = { yes | no | 1 | 0 } Specifies whether to display resize handles
at the corners of the window. The default is yes.
scrollbars = { yes | no | 1 | 0 } Specifies whether to display horizontal
and vertical scroll bars. The default is yes.
status = { yes | no | 1 | 0 } Specifies whether to add a status bar at the
bottom of the window. The default is yes.
titlebar = { yes | no | 1 | 0 } Specifies whether to display a title bar for
the window. This parameter is ignored unless the calling application is an
HTML Application or a trusted dialog box. The default is yes.
toolbar = { yes | no | 1 | 0 } Specifies whether to display the browser
toolbar, making buttons such as Back, Forward, and Stop available. The
default is yes.
top = number Specifies the top position, in pixels. This value is relative
to the upper-left corner of the screen. The value must be greater than or
equal to 0.
width = number Sets the width of the window, in pixels. The minimum value is
100.

bReplace: Optional. When the sURL is loaded into the same window, this
Boolean parameter specifies whether the sURL creates a new entry or replaces
the current entry in the window's history list. true sURL replaces the
current document in the history list
false sURL creates a new entry in the history list.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.
 
T

Tom Pepper Willett

Download the free FP addin "Spawn" from www.jimcoaddins.com which will let
you create custom popup windows.
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
FrontPage 2003 Product Information:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
Understanding FrontPage:
http://msdn.microsoft.com/office/understanding/frontpage/
FrontPage 2002 Server Extensions Support Center:
http://support.microsoft.com/default.aspx?scid=fh;en-us;fp10se
===
| I have built a web app which has a number of help pages that are small
| windows that pop up when the user clicks a hyperlink.
|
| My question is how do I get ride of the usual toolbars that IE has
basically
| I want to hide the address & standard toolbar when this particular window
| pops up
|
| Tia
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top