Ver Mensaje Individual
  #4 (permalink)  
Antiguo 19/04/2006, 11:17
Avatar de jio_dexter_men7
jio_dexter_men7
 
Fecha de Ingreso: mayo-2005
Mensajes: 13
Antigüedad: 19 años
Puntos: 0
y aqui ay otra

IMPEDIR EL BOTON DERECHO

<SCRIPT language="JavaScript">
function non(clic)
{
var msj="mensaje al usuario";
if (navigator.appName == 'Netscape' && clic.which==3)
{ //Comprueba si el navegador es Netscape pues es distinto en uno que en otro
alert(msj);
return false;
}
else
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2)
{ //comprueba si el navegador es Internet Explorer
alert(msj);
return false;
}
return true;
}//La funcion salta cuando el raton pincha el documento (en el navegador)
document.onmousedown = non;
</SCRIPT>