Ver Mensaje Individual
Antiguo 03-may-2008, 17:11   #5 (permalink)
albertcito
albertcito ha deshabilitado el karma
 
Fecha de Ingreso: diciembre-2007
Mensajes: 46
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);
}
}
albertcito está desconectado   Responder Citando