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

Disabling of menus in IE

Status
Not open for further replies.

latha2k1

Programmer
Feb 1, 2003
17
IN
Hi,

Is it possible to disable a default menu in Internet Explorer through HTML/ASP codings?If so, please send us the coding.


Thank You
 
You can't disable the menus as such, but you can open a window which doesn't have a menu bar:

Code:
<script language=&quot;javascript&quot;>
<!--
function openWin() {
	window.open(&quot;newpage.asp&quot;, &quot;newpage&quot;, &quot;menu=no&quot;)
}
-->
</script>

<a href=&quot;javascript:openWin()&quot;>Open a window with no menu bar</a>


If someone really wanted to, they could obviously open your page manually in a browser which DID have a menu but this is the best you can do. --James
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top