function myFunction() {
var x = document.getElementById("mySelect").value;
document.getElementById("demo").innerHTML = x ;
}
I want to be able to use that in each table td
this is my example i need to change the value in the table cell according the selected value in the combobox but it is alwayse only change the first cell not each cell onclick
please i need a help that when i click at any cell it changes into the combobox value please i need help
this is my example