How can I remove “View this image” link when I right click on a image with jQuery?

StackOverflow https://stackoverflow.com/questions/8695339

  •  11-04-2021
  •  | 
  •  

문제

I have an image. When I left click on it, it should increase the value behind the image by 1. When I right click on it, it should decrease the value behind the image by 2.

The problem is, when I right click the image, it decreases the value correctly. However, Mozilla Firefox pops a window like "Copy this image, View this image" etc.

How can I prevent this?

도움이 되었습니까?

해결책

That is the context menu, a standard feature of Modern OS' and not specific to Firefox.

To disable the context menu for images, use:

$(document).on('contextmenu', 'img', function() { return false; });

via DevGrow, modified to use the jQuery 1.7+ .on() to attach the event handler.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top