best ways to prevent images from being saved javascript code example
Example: disable save image option
$(document).on('contextmenu', 'img', function() {
return false;
});
$(document).on('contextmenu', 'img', function() {
return false;
});