Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How to disable save as option in forefox when we right click on the image?

more options

Hi Folks,

Can somebody help to disable save as option when i right click on the image which is showing in the browser.

Hi Folks, Can somebody help to disable save as option when i right click on the image which is showing in the browser.

All Replies (2)

more options

You can look at this extension:

more options

Hi,

sorry,it is impossible by code

you can use addons.

or

you can disable while developing webpage using:

<script language="javascript"> document.onmousedown=disableclick; status="Right Click Disabled"; Function disableclick(event) {

 if(event.button==2)
  {
    alert(status);
    return false;    
  }

} </script>


Regards Deepak Krishnan

Modified by DEEPAK KRISHNAN P.R