IE11 weirdness - options with title attribute only display the tip below the selected option? In this example hover over options b and c and tip shows, but not for a. Select c and b stops showing the tip too???
<select name="sel">
<option value=""></option>
<option title="already assigned" value="a" style="background-color:gray;">a</option>
<option title="orig selected" value="b" selected>b</option>
<option title="already assigned" value="c" style="background-color:gray;">c</option>
</select>
So how do I induce IE11 to show the title tips above the selected option?