Disabling the Right Click Button
The Code:
Copy the following code and paste it inside the HEAD of your document. Modify the message (in red) to suit your personal needs. New lines are created using
\n<script language="JavaScript">
<!--
var Message="Sorry, that function is disabled.\nAll material on this site is copyrighted and should not be taken from this site.";
function click(e) {
if (document.all) {
if (event.button == 2) {
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>
Example:
Right Click anywhere on this page.