html disable conten right click code example
Example: 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;
});