I want to get the value of a select element when the select element is clicked! I want to do it without an onchange attribute in the HTML.
onchange
I would like
.onchange = function() { ... } seems to overwrite other handlers, so I use addEventListener("change", function() { ... })
.onchange = function() { ... }