10/11/2010, 10:50
|
| | Fecha de Ingreso: marzo-2004
Mensajes: 35
Antigüedad: 20 años, 8 meses Puntos: 0 | |
Respuesta: Llamada XML con AJAX Efectivamente así funciona:
Os lo pongo:
for (var i=0; i < myNodeList.length; i++) {
option = document.createElement("option");
if(myNodeList[i] && myNodeList[i].firstChild) {
option.appendChild(document.createTextNode(myNodeL ist[i].firstChild.nodeValue));
} else {
option.appendChild(document.createTextNode(' '));
}
versionList.appendChild(option);
}
Verifica si existe en el if...
Un saludo y muchísimas gracas... |