var newtbody = document.createElement("tbody"); var newrow = document.createElement("tr"); var newcell = document.createElement("td");
newcell.appendChild(document.createTextNode("a new row 1"));
newrow.appendChild(newcell);
newtbody.appendChild(newrow); table.insertBefore(newtbody, tbody);
varcaption = document.createElement("caption"); caption.appendChild(document.createTextNode("this is a caption that you shouldn't see")); table.insertBefore(caption, tbody);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.