Otodik vizsga

This commit is contained in:
2024-11-28 16:33:27 +01:00
parent fedf227578
commit cfbc1bb80a
10 changed files with 130 additions and 0 deletions

View File

@ -0,0 +1,11 @@
console.log("Loaded");
function update(){
console.log("UPDATED!");
}
function NewLine() {
var newline = document.getElementById("inprow");
var clonedRow = newline.cloneNode(true); // Clone the row (true means deep clone, copying all children)
document.getElementById("maintable").appendChild(clonedRow); // Append the cloned row to the table
}