Si tengo este código en el que creo 2 <td> y para hacer referencia al primero y al ultimo uso firstChild y lastChild, si solamente tubiera creado 1 como haría referencia a él?
Código:
newNode.appendChild(document.createElement("td"));
newNode.appendChild(document.createElement("td"));
newNode.firstChild.appendChild(document.createTextNode(text));
newNode.lastChild.appendChild(newInput);
Y para saber el total que ha encontrado al hacer un document.getElementById() ? por que el .length aquí si que no va...
Thanks