html select eent listener code example
Example 1: where is select value in javascript event object
let handleSelect = (e) => { // e === this
console.log(event.target.value) // event !== this
}
Example 2: on change event html not working
onchange is only triggered when the control is blurred. Try onkeypress instead.