Prevent right-click context menu on images with jQuery
|
1 2 3 4 5 6 |
jQuery(function ($){
$('img').live('contextmenu', function(e){
alert('These images are copyright [COMPANY] and may only be used with explicit permission.');
return false;
});
}); |
