What forms can hide the path of an image if the user clicks on it right-click ?
Using jQuery:
$('img').bind('contextmenu', function(e) { return false; });
link
Source: Disabling right click on images using jquery