Agregar opciones al select...
------------------------------------
Me paso que al usar select.add(option, null) en explorer no funciono.
Se corrige con un try/catch...
try
{
x.add(y,null); // standards compliant
}
catch(ex)
{
x.add(y); // IE only
}
..tomado de http://www.w3schools.com/htmldom/met_select_add.asp
//Serg
No hay comentarios.:
Publicar un comentario