Frage

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?

War es hilfreich?

Lösung

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

$(document).on("contextmenu","img",function(){ return false;});
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top