10 lines
250 B
JavaScript
10 lines
250 B
JavaScript
|
let tableSelectionDomElement = document.getElementById("tabla");
|
||
|
let selectedTable = "tagok";
|
||
|
|
||
|
tableSelectionDomElement.addEventListener("change", function (){
|
||
|
selectedTable = tableSelectionDomElement.value;
|
||
|
|
||
|
console.log(selectedTable);
|
||
|
});
|
||
|
|