JavaScript

Sunday, August 15, 2010

Disable Right Click

Disable Your Right-mouse Click


Hi, Friends

Here is the javascript to disable right click functionality of the system.
It may useful in application that require security or prevention to copy images etc..
To make use of this script copy this script to your body section.
Use script tag & language = javascrpt.
var message="Function 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")

No comments:

Post a Comment