How to disable Right Click on your website (Script)
This cross-browser script will allow you to disable right click on your website. It will disable the right click menu from appearing when users right click the mouse on your website. This code can be used to stop website visitors from copying content on your website and will prompt a customize message from the website to visitors who right click pages the script has been implemented on.
The 6th line of the disable right click script contains a place to add a message. Find var message=”Right click is disabled!”; in the script below and replace Right click is disabled! with the message you wish to send your visitors who right click on your website.
To disable right click on your website copy and paste the code below into your header or body of a single webpage you wish to disable right click on.
<script language=JavaScript> <!-- //Disable right mouse click script var message="Right click is disabled!"; /////////////////////////////////// function clickIE4(){ if (event.button==2){ alert(message); return false; } } function clickNS4(e){ if (document.layers||document.getElementById&&!document.all){ if (e.which==2||e.which==3){ alert(message); return false; } } } if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown=clickNS4; } else if (document.all&&!document.getElementById){ document.onmousedown=clickIE4; } document.oncontextmenu=new Function("alert(message);return false") // --> </script>