No right click (Javascript)

by spyka (http://www.spyka.net)

This code will disable your users from right clicking on your webpages. Change the message to what you want to tell your users when they right click.
Place code in the <head></head> tags of your page.

Code:
<script language="Javascript">
function no_rclick() {
    var msg = 'Do not right click'; // Change
    if (event.button == 2) {
        alert(msg);
    }
}
document.onmousedown=no_rclick;
</script>

Code demo

No right click online demo

Help and comments

Discuss this and other scripts in our webmaster foruns

Learn more about our forums