August 20, 2000 - Blocking the Right Mouse Button
August 20, 2000 Blocking the Right Mouse Button Tips: August 2000
Yehuda Shiran, Ph.D.
|
<SCRIPT language=JavaScript>
<!--
function click() {
if (event.button==2) {
alert(' sorry the right button has been blocked !');
}
}
document.onmousedown=click
// -->
</SCRIPT>
This tip has been contributed by Mike Bird from London. His e-mail is [email protected].