Ver Mensaje Individual
  #3 (permalink)  
Antiguo 22/04/2004, 07:17
abuenog
 
Fecha de Ingreso: julio-2001
Ubicación: Barcelona
Mensajes: 922
Antigüedad: 23 años, 4 meses
Puntos: 1
Ok, perfecto.

Lo hice asi:

var table= document.getElementById("table")
trs= table.firstChild.childNodes
var tr1= trs[0].cloneNode(true)
var tr2= trs[1].cloneNode(true)
table.firstChild.replaceChild(tr1, trs[1])
table.firstChild.replaceChild(tr2, trs[0])


muchas gracias

saludos