function add()
{
p = document.getElementById("myTable").firstChild;
newRow = document.createElement("TR");
newCol = document.createElement("TD");
newInput = document.createElement("INPUT");
newInput.setAttribute("type", "text");
newCol.appendChild(newInput);
newRow.appendChild(newCol);
p.appendChild(newRow);
}
Další dotaz mám jak zrušit přidanou tabulku. 