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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Window.Open question

Status
Not open for further replies.

ggriffit

Programmer
Oct 25, 2002
1,578
0
0
GB
Dear All,
I'm developing a site for an Intranet, running IE only, so can be a little more non standard in the browser support, I'm looking to enable a custom button bar via window.open so that specific buttons for a web based app can be shown without the standard buttons.

e.g.

window.open(xxx,menubar=false;custombar1=true)

Is this possible ? if so, can anyone share some code ?

Greg Griffiths
Livelink Certified Developer & ECM Global Star Champion 2005 & 2006
 
Code:
window.open('', 'foobar', 'directories=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,width=300,height=100');
 
justin,
thanks for your sample, I had this already what I was looking for was the ability to toggle on/off a custom toolbar, such as the Google / Yahoo! toolbars in the Window.Open function call ?

Greg Griffiths
Livelink Certified Developer & ECM Global Star Champion 2005 & 2006
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top