Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/03/2008, 11:02
YouWoTMA
 
Fecha de Ingreso: marzo-2008
Mensajes: 2
Antigüedad: 16 años, 10 meses
Puntos: 0
Re: Añadiendo eventos

Solucionado:
Código:
<html>
	<body>
		<div>hola1</div>
		<div>hola2</div>
		<div>hola3</div>	
		<script>
			d = document.getElementsByTagName("DIV");
			for(i=0;i<d.length;i++){
				d[i].addEventListener("click", eval('function(){alert('+i+')}'), false)
			}
		</script>
	</body>
</html>