Ver Mensaje Individual
  #5 (permalink)  
Antiguo 03/05/2008, 16:11
albertcito
 
Fecha de Ingreso: diciembre-2007
Mensajes: 169
Antigüedad: 16 años, 5 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);
}
}