Javascript / Browser / Right Click Block
Blocks the right click and gives the user a message. But what is the sence in it when the user can still get what ever he wants by a number of other ways. works in IE5+ and NS4+, NS6+
General Details
Snippet uploaded by: snippet
Email : webmaster@snippetlibrary.com
Snippet By: Unknown
<!---Head--->
<SCRIPT LANGUAGE="JavaScript1.1">
function right(e) {
<!--
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("Sorry, Right Click is not available.");
return false;
}
return true;
}
document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
//-->
</script>
<!---Body--->
none
No Reviews to show
