Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/08/2002, 05:32
Avatar de CORE
CORE
Usuario no validado
 
Fecha de Ingreso: abril-2002
Ubicación: Merida
Mensajes: 2.165
Antigüedad: 22 años
Puntos: 3
Re: Cómo anular boton derecho del mouse?

Código:
 <script language="JavaScript">

function yaunclick()
	{
	alert('Esta desahablitada esta opcion);
	document.location.href="http://www.disney.com";
	}
function noclick(scx)
	{
	if (navigator.appName == "Netscape" && scx.which == 3)
		{
		yaunclick();
		return false; 
		}
if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2)
		{
		yaunclick();
		return false; 
		}
	}
document.onmousedown = noclick
</script>