Does anyone know any event(s) you can use to react to a "mouseover" a certain entry in the combo?
If so do you have demo code?
Printable View
Does anyone know any event(s) you can use to react to a "mouseover" a certain entry in the combo?
If so do you have demo code?
You would need a onmouseover event on the OPTION tags themselves. Unfortunately, OPTION tags only have a few events:
onlayoutcomplete
onlosecapture
onpropertychange
onreadystatechange
ontimeerror
onselectstart
The only one CLOSE is onselectstart- it fires when the specific option is clicked on.
I was afraid that might be the case.
Thanks for the info.