
September 3rd, 1999, 04:13 PM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
It is possible to disable the right mouse button using DHTML.
Try this out...
<script language="JavaScript1.2">
/*Disable right mouse click Scriptİ Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions, 100's more DHTML scripts, and
Terms Of Use, visit dynamicdrive.com This script last updated:99/04/05
*/ if (document.all) document.body.onmousedown=new Function("if (event.button==2| |event.button==3)alert('The right mouse button has been disabled')")
</script>
Check the original code out at:
http://www.dynamicdrive.com/dynamicindex11/noright.htm
|