JS Pilih Nilai Ubah
document.getElementById('my-select').addEventListener('change', function() {
console.log('You selected: ', this.value);
});
Defeated Dotterel
document.getElementById('my-select').addEventListener('change', function() {
console.log('You selected: ', this.value);
});
const options = Array.from(select.options);
options.forEach((option, i) => {
if (option.value === use_id) select.selectedIndex = i;
});