I have a standard html drop down box.
I want to run js code after the user selected an item without a separate submit button.
Onchange event does not fire when the user selects the 1st item (actually the previously selected item) in the select box.
How can I make the combo box react to the click even if the previously selected item is clicked?
Notes: 1. I don't want to add 'select from here' or something similar to the select box. 2. the onclick event does not help since it fires also on the 1st click the user does to open the options before actually selecting one.