Disable Right click on web page

How to disable right click on web page or If you want to protect your source code or many times programmers may need to disable right click on web page. You can copy below script code in between <head> and </head> tag.

<script type="text/javascript">
    var message="You Can't right click on this page!";
    function clickIE()
    {
        if (event.button==2)
        {
            alert(message);
            return false;
        }
    }

if (document.all&&!document.getElementById)
{
    document.onmousedown=clickIE;
}
document.oncontextmenu=new Function("alert(message);return false")
</script> 

No comments:

Post a Comment