Not a Member Yet,
Click here to Register

ID: 25
Viewed: 3242
Added: Nov 23, 2001
Version:
Snippet uploaded by: snippet
Written By: Unknown
Demo: Sorry, no demo



User Rated at: 0 Stars
Rate This:

Thank you for your vote. Please wait...

It appears you already voted for this snippet

It appears your vote value was empty

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+

<!---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 Comments to show

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


Replying to a Comment...


Adding your comment. Please wait...

Thanks for adding your comment!. After further review it will be added.

There was a problem adding your comment. Please try again.

Please complete all the fields in the form before sending.

© 2002 - 2024 snippetlibrary.com All Rights Reserved. Conditions
Do NOT follow this link or you will be banned from the site!