PDA

Click to See Complete Forum and Search --> : HTML Combo Boxes -- Help!!


benski
Oct 11th, 2000, 04:58 AM
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?

monte96
Oct 11th, 2000, 03:11 PM
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.

benski
Oct 12th, 2000, 03:52 AM
I was afraid that might be the case.
Thanks for the info.