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 Westi 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 HTML page with no tool bar

Status
Not open for further replies.

baybook

MIS
Sep 16, 2004
66
US
I've forgotten how to do this. I want to link to a page that I set up but I want the link to open a stripped down browser that is say 200 by 300, no tool bar. I'd like to open this is a new page from a link. I can't remember how to do this. Can anyone asist?

Thanks!
 
window.open("page.html", "", "location=no, menubar=no, resizable=no, width=418, height=450, top=50, left=300, scrollbars=yes");

[conehead]
 
This will display a link that, when clicked, will open a window that is 200 pixels in height and 300 pixels in width. It will not have any window accessories (toolbar, menubar, etc). It will be resizable.

Code:
<a href="#" onclick="window.open('[URL unfurl="true"]http://www.google.com/',[/URL] 'win', 'height=200,width=300,resizable'); return false;">Click</a>

*cLFlaVA
----------------------------
"Holy crip he's a crapple!
 
Here's a slight refinement:
Code:
<a href="[URL unfurl="true"]http://www.google.com/"[/URL] target="win" onclick="window.open(this.href, 'win', 'height=200,width=300,resizable'); return false;">Click</a>
Doing it like this means that anyone surfing with Javascript switched off will still get the desired page opening in a new window (albeit with toolbars etc. and variable size), whilst JS-enabled browsers will get it as you want it.

-- Chris Hunt
Webmaster & Tragedian
Extra Connections Ltd
 
Yes, nicely done. I've even used that before, just didn't remember it for the example. Thanks :)

*cLFlaVA
----------------------------
"Holy crip he's a crapple!
 
Thanks so much! Amazing what you can forget when you do not use it!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top