[Javascript] mouseover select option

Roland Neilands rneilands at pulsemining.com.au
Mon Oct 25 18:50:29 CDT 2004


I've just tried using a mouseover on a select option for the first time, which seems to work fine in Mozilla, but not in IE 6. I'd prefer not to use the full description due to space limitations.

Does anyone know how to get this working?

<select name="Org" id="Org" onChange="newOrg(this.value);">
<option value="DEV" onMouseOver="window.status='Development System'; return true;" onMouseOut="window.status=' '; return true;" SELECTED>DEV</option>
<option value="TST" onMouseOver="window.status='Testing Environment'; return true;" onMouseOut="window.status=' '; return true;">TST</option>
</select>

Regards,
Roland 




More information about the Javascript mailing list