Cita:
Iniciado por Panino5001 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??