Hi,
table = table.getElementsByTagName('tbody')[0] || table;
table ist jetzt also ein tbody-Element.
var newRow = document.createElement('thead');
newRow ist jetzt also ein thead-Element.
newRow.setAttribute("width", "100%");
thead hat kein width-Attribut.
//newRow.setAttribute("border", "1");
//newRow.setAttribute("cellpadding", "7");
//newRow.setAttribute("cellspacing", "1");
//newRow.setAttribute("bgcolor", "#ccc");
Die passen auch nicht zu thead, sondern zu table (alle gehören aber eigentlich durch CSS ersetzt).
table.appendChild(newRow);
Hier hängst Du ein thead in ein tbody ein. tbody darf aber nur tr enthalten.
cu,
Andreas
--
Warum nennt sich Andreas hier MudGuard?
O o ostern ...
Fachfragen per Mail sind frech, werden ignoriert. Das Forum existiert.
Warum nennt sich Andreas hier MudGuard?
O o ostern ...
Fachfragen per Mail sind frech, werden ignoriert. Das Forum existiert.