문제

I want to disable right clicks on any images.

This works fine, but only for the static images.

$('img').bind('contextmenu', function(
    return false;
});

How can I prevent right clicking on images which are added dynamically?

도움이 되었습니까?

해결책

You can use .on() with a delegated event:

$(document).on("contextmenu","img",function(){ return false;});
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top