Tema: attachEvent
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/05/2009, 21:42
jasamestica
 
Fecha de Ingreso: marzo-2006
Mensajes: 329
Antigüedad: 18 años, 2 meses
Puntos: 1
attachEvent

Hola

Porque no me agrega los eventos al elemento option de un select?, todo lo demas
lo agrega como los atributos id y name correctamente

//combobox es un elemento select



opcion=document.createElement("option");
opcion.name="opt" + i;
opcion.id="opt" + i;
opcion.innerText=ArrayPalabra[i];
opcion.attachEvent('onclick', lafuncion);
comboBox.appendChild(opcion);