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 | | | | 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 | | | | 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
| | | | 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"); | | | | 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/ | | | | 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. | | | | 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/ | | | | 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 | | | | 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
|  | Similar JavaScript / Ajax / DHTML bytes | | | /bytes/about
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 226,295 network members.
|