Connecting Tech Pros Worldwide Help | Site Map

How to disable a menu item in browser

Nemo
Guest
 
Posts: n/a
#1: Aug 16 '06
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


David Dorward
Guest
 
Posts: n/a
#2: Aug 16 '06

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
Nemo
Guest
 
Posts: n/a
#3: Aug 17 '06

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

RC
Guest
 
Posts: n/a
#4: Aug 17 '06

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");
Randy Webb
Guest
 
Posts: n/a
#5: Aug 17 '06

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/
RC
Guest
 
Posts: n/a
#6: Aug 17 '06

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.
Randy Webb
Guest
 
Posts: n/a
#7: Aug 17 '06

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/
David Dorward
Guest
 
Posts: n/a
#8: Aug 17 '06

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
Nemo
Guest
 
Posts: n/a
#9: Aug 18 '06

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

Closed Thread