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

HIDE TOOLBARS

Status
Not open for further replies.

pmonza

Programmer
Aug 17, 2003
4
AR
Hello,

I want to know how to hide all Internet Explorer 5.5 (or later) toolbars.
(Including scrollbars)

Thanks.

 
<yoda>
hide the toolbars with javascript in the current window in IE you cannot
</yoda>

in a new window you would do this with the third argument to window.open();

e.g.
Code:
window.open(&quot;[URL unfurl="true"]http://www.amazon.com/&quot;,[/URL] &quot;amz&quot;, &quot;menubar=0; toolbar=0&quot;);

=========================================================
-jeff
try { succeed(); } catch(E) { tryAgain(); }
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top