oncontextmenu=”return false;”
And add it to the opening tag of your website, I.E:
<body false="" oncontextmenu="”return false;">
This will prevent the right click option being available in most web browsers, although some, such as Opera will still choose to ignore this command.
Blocking Right Click Using Javascript
You can also add javascript functionality to show alert box when right click...
For Example:
<script type="text/javascript">
function RightClickDisable(){
alert("Right Click is Disable");
return false;
}
</script>
and
<body false="" oncontextmenu="”RightClickDisable()">
ConversionConversion EmoticonEmoticon