if you are opening a new window through javascript, you can hide the toolbar
by specifying the windows features prior to calling the window.open()
method.
see if the following code solves your problem:
//--> start
function openWindow(URL,argWidth,argHeight) {
var NewWindowFeatures = "width=" + argWidth + ",height=" + argHeight +
",left=2,top=2,resizable=no,scrollbars=yes,toolbar=no";
window.open(URL,"oNewWindow",NewWindowFeatures);
}
openWindow('www.google.com',790,650);
//--> end
-----Original Message-----
From: Terrence Joubert [mailto:Terrence@v...]
Sent: Friday, August 10, 2001 1:57 PM
To: JavaScript HowTo
Subject: [javascript_howto] Disabling a browser toolbar
HI,
How do I disable / remove a toolbar from an MS Internet Explorer browser
window?
Thanks
Terrence