Disallow right click (Rated 5)Description:
This is a basic form of blocking the right click functionality. Personally I can never see a valid use for this, as there will _always_ be away around it. Anyway, its here if you want it.. Code starts here
<script language="Javascript1.2">
message = "Function Disabled!";
function NoRightClick(b) {
if(((navigator.appName=="Microsoft Internet Explorer")&&(event.button > 1))
||((navigator.appName=="Netscape")&&(b.which > 1))){
alert(message);
return false;
}
}
document.onmousedown = NoRightClick;
// -->
</script>
Submitted by Devscripts on 17-02-2003 21:46 |