How to disable a menu item in browser 
August 16th, 2006, 09:25 PM
| | | How to disable a menu item in browser
Hello Guys,
Can somebody tell me how I can disable a menu item such as "save as" in the
Internet Explorer or Netscape using Javascript. Thanks.
Nemo | 
August 16th, 2006, 10:45 PM
| | | Re: How to disable a menu item in browser
Nemo wrote: Quote:
Can somebody tell me how I can disable a menu item such as "save as" in
the Internet Explorer or Netscape using Javascript.
| You can't.
--
David Dorward <http://blog.dorward.me.uk/ <http://dorward.me.uk/>
Home is where the ~/.bashrc is | 
August 17th, 2006, 11:25 AM
| | | Re: How to disable a menu item in browser
Then how they do that becasue I have seen this, is there another way or
another script like VB?
"David Dorward" <dorward@yahoo.comwrote in message
news:ec077s$4pu$1$8302bc10@news.demon.co.uk... Quote:
Nemo wrote:
> Quote:
Can somebody tell me how I can disable a menu item such as "save as" in
the Internet Explorer or Netscape using Javascript.
| >
You can't.
>
--
David Dorward <http://blog.dorward.me.uk/ <http://dorward.me.uk/>
Home is where the ~/.bashrc is
| | 
August 17th, 2006, 12:45 PM
| | | Re: How to disable a menu item in browser
Nemo wrote: Quote:
Hello Guys,
Can somebody tell me how I can disable a menu item such as "save as" in the
Internet Explorer or Netscape using Javascript. Thanks.
Nemo
>
>
| No, you can't remove a menu item from a menu.
But you can eliminate the all menu.
Try
window.open("yourFile.html", "targetNewWindow",
"toolbar=no,location=0,directory=no,status=no,menu bar=0,scrollbars=no,resizable=0,copyhistory=0,widt h=200,height=200"); | 
August 17th, 2006, 01:25 PM
| | | Re: How to disable a menu item in browser
RC said the following on 8/17/2006 8:53 AM: Quote:
Nemo wrote: Quote:
>Hello Guys,
>Can somebody tell me how I can disable a menu item such as "save as"
>in the
>Internet Explorer or Netscape using Javascript. Thanks.
>Nemo
>>
>>
| >
No, you can't remove a menu item from a menu.
But you can eliminate the all menu.
Try
| And then wonder why it doesn't remove the toolbars? Quote:
window.open("yourFile.html", "targetNewWindow",
"toolbar=no,location=0,directory=no,status=no,menu bar=0,scrollbars=no,resizable=0,copyhistory=0,widt h=200,height=200");
| Control-N
--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/ | 
August 17th, 2006, 01:45 PM
| | | Re: How to disable a menu item in browser
Randy Webb wrote: Quote:
>
And then wonder why it doesn't remove the toolbars?
| Then try
"toolbar=0,location=0,directories=0,status=0,menub ar=0,scrollbars=0,resizable=0,copyhistory=0,width= 500,height=200"
It works for me in FF, NS and IE. | 
August 17th, 2006, 03:45 PM
| | | Re: How to disable a menu item in browser
RC said the following on 8/17/2006 9:55 AM: Quote:
Randy Webb wrote:
> Quote:
>>
>And then wonder why it doesn't remove the toolbars?
| >
Then try
>
"toolbar=0,location=0,directories=0,status=0,menub ar=0,scrollbars=0,resizable=0,copyhistory=0,width= 500,height=200"
>
>
It works for me in FF, NS and IE.
| Try it in IE7.
Try it in Opera.
Try it in FF with the user.js file edited:
user_pref("dom.disable_window_open_feature.toolbar ", true);
--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/ | 
August 17th, 2006, 10:15 PM
| | | Re: How to disable a menu item in browser
Nemo wrote:
Please do not top post. Quote: |
Then how they do that becasue I have seen this
| Where?
--
David Dorward <http://blog.dorward.me.uk/ <http://dorward.me.uk/>
Home is where the ~/.bashrc is | 
August 18th, 2006, 12:35 PM
| | | Re: How to disable a menu item in browser
David,
I'll try to find it, I have seen a webpage that when I tried to save using
"Save as ...", the menu was disabled, I do not remember if they opened a new
window.
Regards
"David Dorward" <dorward@yahoo.comwrote in message
news:ec2pr2$q0f$1$8302bc10@news.demon.co.uk... Quote:
Nemo wrote:
>
Please do not top post.
> Quote: |
Then how they do that becasue I have seen this
| >
Where?
>
>
--
David Dorward <http://blog.dorward.me.uk/ <http://dorward.me.uk/>
Home is where the ~/.bashrc is
| | | Thread Tools | Search this Thread | | | |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | | | | What is Bytes?
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 220,989 network members.
|