Tach
Irgendjemand ne Ahnung, wieso da nichts passiert (nicht mal ein lumpiger Fehler)?
var theText = document.createTextNode("hallo?");
var theCell = document.createElement("td");
var theRow = document.createElement("tr");
theCell.appendChild(theText);
theRow.appendChild(theCell);
document.getElementById("meineLiebeTabelle").appendChild(theRow);
Danke 1000
Didosa