Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/02/2006, 13:16
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Hola Davhira

Pon un id a tu tabla: <table id="pepe">

y utiliza este código:
Código:
obj = document.getElementById('pepe');
for (i=0; fila = obj.getElementsByTagName('tr')[i]; i++) {
  celda = document.createElement('td');
  celda.appendChild(document.createTextNode('algo'));
  fila.appendChild(celda);
}
Saludos,