snippet library logo
Boxedart - Worlds Largest Development Center
in category
Javascript / Browser / Right Click Block
Snippet details
ID: 25
Viewed: 1181
Added: 2001-11-23
Version:
View Demo

User Rated at:
Rate This:
Snippets in this catagory         
Show Printable Version
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


Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Subject:

Reviewed By:

Write a review:





Terms of Conditions
Powered By
Avian Hosting
© 2005 snippetlibrary.com All Rights Reserved.