חיפוש בתמיכה

יש להימנע מהונאות תמיכה. לעולם לא נבקש ממך להתקשר או לשלוח הודעת טקסט למספר טלפון או לשתף מידע אישי. נא לדווח על כל פעילות חשודה באמצעות באפשרות ״דיווח על שימוש לרעה״.

מידע נוסף

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.

כל התגובות (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

השתנתה ב־ על־ידי DEEPAK KRISHNAN P.R