How to prevent Right Click option using jquery
I think this should help. Trick is to bind the contextmenu event.
<script type="text/javascript" language="javascript">
$(function() {
$(this).bind("contextmenu", function(e) {
e.preventDefault();
});
});
</script>
$(document).ready(function() {
$("img").on("contextmenu",function(){
return false;
});
});