added some database work

This commit is contained in:
szabomarton
2024-12-03 11:17:19 +01:00
parent 0b28a908b1
commit 2926ad9619
2 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
let tableSelectionDomElement = document.getElementById("tabla");
let selectedTable = "tagok";
tableSelectionDomElement.addEventListener("change", function (){
selectedTable = tableSelectionDomElement.value;
console.log(selectedTable);
});