Is there a way to prevent the highlighting of selected options in a <select>
menu when a user makes a selection?
<select id="my_select_menu">
<option id="1">Option 1</option> // I do not want this option to be highlighted
<option id="2">Option 2</option> // I also do not want this option to be highlighted
....
</select>