Disable right clicking on page

This trick disables the right click on your web page . It is tested on IE and works fine.. Here is the code:

<SCRIPT language="JavaScript"> <!-- var message="Put here the text you want to display when you right click"; function click(e) { if (document.all) { if (event.button==2||event.button==3) { alert(message); return false; } } if (document.layers) { if (e.which == 3) { alert(message); return false; } } } if (document.layers) { document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=click; // --> </SCRIPT>

Post Comment
Login to post comments