Hola a todos
Yo lo tengo así definido y me funciona en IE y NS 7.3 (en el resto no lo sé)
Código HTML:
<script language="JavaScript">
<!--
function init() {
/*
+-------------------------------------------------------------
| Desactivar el evento ONCONTEXTMENU
| Capturar los eventos ONMOUSEMOVE y ONMOUSEDOWN
| - para IExplorer y Netscape 6.X son los mismos
+-------------------------------------------------------------
*/
document.oncontextmenu = new Function("return false")
if( document.layers ) { // Nestcape Navigator 4.X
document.captureEvents( Event.MOUSEMOVE );
document.captureEvents( Event.MOUSEDOWN );
} else { // Internet Explorer y Netscape 6.X
document.onmousemove = setMouseCoords;
document.onmousedown = mouseDown;
}
}
//-->
</script>
</head>
<body bgcolor="#8080FF" onload="init()" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">