<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<h3>How to Disable Right Click using jQuery</h3>
<script>
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
alert('right click disabled');
return false;
});
});
</script>
</body>
</html>