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

How do I suppress the IE toolbars?

Status
Not open for further replies.

OhioSteve

MIS
Mar 12, 2002
1,352
US
I want to suppress the normal IE toolbars and menus. Can I do this in either CSS or HTML?

 
I have basically figured out how to complete this task. was helpful. Check out this example:

<html>
<body>

<a href=&quot; onClick=&quot;window.open(' 'myWin',
'width=800, height=600,left=0,top=0');
return false&quot;
>the link text</a>

</body>
</html>

This is cool because its simple. I also checked out the java scripts. They are more complex, but they do let you suppress hotkeys, which is good.
 
You are using JavaScript.

This is javascript:

onClick=&quot;window.open(' 'myWin',
'width=800, height=600,left=0,top=0');
return false&quot;




MrBelfry
 
That's a bit confusing to me. In the whole document, I never used the script tag. Yet a used javascript and it did not choke.
 
And of course, you limit those with no java enable from viewing your site.
 
And of course, you limit those with no java enable from viewing your site.


No you don't! You ONLY prevent those without JavaScript to see your site.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top