javascript select on change get value code example
Example 1: .on change get value
$('select').on('change', function() {
alert( this.value );
});
Example 2: javascript select change selected
const options = Array.from(select.options);
options.forEach((option, i) => {
if (option.value === use_id) select.selectedIndex = i;
});
Example 3: js select on change value
document.getElementById('my-select').addEventListener('change', function() {
console.log('You selected: ', this.value);
});