js on select change 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);
});
Example 4: js addeventlistener change select
<input id="test" type="text" value="Sélectionnez-moi !" />
<script>
var elem = document.getElementById('test');
elem.addEventListener('select', function() {
alert('La sélection a changé !');
}, false);
</script>
Example 5: html select change event
select.addEventListener('change', function);