table node hinzufügen
borobudur
- javascript
Hallo, ich versuche einen table-node hinzuzufügen. Der Firefox macht das brave aber der IE will nicht. Weiss jemand wie das bei MS macht?
function chooseFolder(chosenTask) {
var ct = document.getElementById("delchoosetask");
document.getElementById("adminform").removeChild(ct);
var table = document.createElement("table");
table.setAttribute("border","1");
var tr = document.createElement("tr");
var td = document.createElement("td");
var text = document.createTextNode( "Home" );
td.appendChild(text);
tr.appendChild(td);
table.appendChild(tr);
document.getElementById("adminform").appendChild(table);
}
Hi,
Hallo, ich versuche einen table-node hinzuzufügen. Der Firefox macht das brave aber der IE will nicht. Weiss jemand wie das bei MS macht?
Du hast tbody nicht berücksichtigt.
cu,
Andreas
Danke Andreas, genau das war das problem.
Gruss aus genf
MudGuard,
Du hast tbody nicht berücksichtigt.
Wo hab ich das schon mal gehört? ;-)
Gunnar