![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
07/05/2009, 21:42
|
| | Fecha de Ingreso: marzo-2006
Mensajes: 329
Antigüedad: 18 años, 11 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); |