<script>
function boom()
{
document.body.offsetHeight;
vartable = document.getElementById("table");
var newtbody = document.createElement("tbody"); var newrow = document.createElement("tr"); var newcell = document.createElement("td");
newcell.appendChild(document.createTextNode("a new row 2"));
newrow.appendChild(newcell);
newtbody.appendChild(newrow); table.insertBefore(newtbody, table.firstChild);
varcaption = document.createElement("caption"); caption.appendChild(document.createTextNode("this is the caption")); table.insertBefore(caption, table.firstChild);
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.