03/05/2008, 16:11
|
| | Fecha de Ingreso: diciembre-2007
Mensajes: 169
Antigüedad: 17 años, 2 meses Puntos: 6 | |
Re: DOM ayuda con <table> Muchas Gracias caricatos, y la funcion (por si es que a alguien le interesa) quedo así:
function mostarTD(table)
{
var table = document.getElementById(table);
var td = table.getElementsByTagName("td");
for(i=0; i < td.length; i++)
{
alert(td[i].innerHTML);
}
} |