How to disable save as option in forefox when we right click on the image?
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)
You can look at this extension:
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