how to disable right click on web page using jquery code example
Example: disable right click jquery
//Disable mouse right click
$("body").on("contextmenu", function(e) {
return false;
});
//Disable mouse right click
$("body").on("contextmenu", function(e) {
return false;
});