Ver Mensaje Individual
  #5 (permalink)  
Antiguo 10/10/2005, 17:30
Appletalk
 
Fecha de Ingreso: febrero-2004
Mensajes: 221
Antigüedad: 20 años, 9 meses
Puntos: 0
Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
	<title>Boton izquierdo?</title>
	
	<script type="text/javascript">
		
		boton_izq = function ( ev )
		{
			alert('Jo jo');
			
			// para parar la propagacion del evento en gecko
			if( ev.stopPropagation )
			{
				ev.preventDefault();
				ev.stopPropagation();
			}
			return false;	
		}
		
		// atacha los eventos al cargarse la pagina
		window.onload = function ( )
		{
			html_el = document.getElementsByTagName('html').item(0); 
		
			if( window.attachEvent )
				html_el.attachEvent( 'oncontextmenu', boton_izq );
			else if ( window.addEventListener )
				html_el.addEventListener( 'contextmenu', boton_izq, false );
		}
			
	</script>
</head>

<body>
	Foros del Web
</body>
</html> 
- Crossbrowser
- XHTML 1.0 Strict
__________________
Guillermo Rauch
Freelancer