right click disable html code example
Example 1: disable right click
document.addEventListener('contextmenu', event => event.preventDefault());
Example 2: disable right click div
This is the Phone and NO ONE SHOULD RIGHT CLICK THIS! >:)
And this is the Keyboard, ofcourse yo can right click this :)
$('img').bind('contextmenu', function(e){
alert("This Logo is protected");return false;
});