I\'ve got this function:
$(document).ready(function() { $(\'.post_button, .btn_favorite\').click(function() { //Fade in the Popup $(\'.login_modal_message\
The following worked for me
$(document).ready(function(){ $(document).bind('contextmenu', function(e) { if( e.button == 2 && jQuery(e.target).is('img')) { alert('These photos are copyrighted by the owner. \nAll rights reserved. \nUnauthorized use prohibited.'); return false; } }); });