me funciono, pero ahora necesito obtener el id de un elemento dentro un tr, mas especificamente el id del input text, por cada fila..
pensaba al momento de recorrer la tabla fila a fila obtener el id del input mediante nodos, pero no me funciona...
Código Javascript
:
Ver originalfor(var x = 1;x < elementos.length;x++){
var idInput = elementos[x].firstChild.nextSibling.childNodes[1].firstChild.id; // aqui intento obtener el id del input
alert('id del input : '+ idInput);
elementos[x].style.display = 'none'
}
Código HTML:
Ver original <td><a href="#" onclick="hideSection()">esconder
</a></td> <!-- area que debe esconderse y mostrarse -->
<!--fin area que debe esconderse y mostrarse -->