Ver Mensaje Individual
  #3 (permalink)  
Antiguo 24/11/2008, 14:00
nicoram
 
Fecha de Ingreso: diciembre-2007
Mensajes: 4
Antigüedad: 16 años, 9 meses
Puntos: 0
Respuesta: Problema de compatibilidad DOM

Cita:
Iniciado por Panino5001 Ver Mensaje
Para que funcione en explorer tenés que crear un elemento tbody, en ese elemento insertar filas y columnas y luego agregar ese tbody al elemento table.

var TBODY = document.createElement('tbody');
LI.appendChild(TABLA);
TABLA.appendChild(TBODY);
TBODY.appendChild(FILA1);
TBODY.appendChild(FILA2);
TBODY.appendChild(FILA3);

estas lineas las agregue segun tu explicacion pero no funciono... estan bien asi??