Tested with Internet explorer 7 (for backwards compatibility) and Firefox 4.
I am getting strange behaviour from select event handler.
http://www.w3schools.com/tags/tag_select.asp states that event handlers supported.
<select id="selection" onfocus="window.status='here';"
onblur="window.status='there';">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
I cannot get any event handler to respond through the select tag. Am I doing something wrong? is the select event handler not firing or?
any ideas anyone?
The issue is with
window.status.Source.