What do you call the highlight as you hover over an OPTION in a SELECT, and how can I "un"highlight
- by devils-avacado
I'm working on dropdowns in IE6 (SELECT with OPTIONs as children). I'm experiencing the problem where, in IE6, dropdown menus are truncated to the width of the SELECT element. I used this jquery to fix it:
var css_expanded = {
'width' : 'auto',
'position' : 'absolute',
'left' : '564px',
'top' : '393px'
}
var css_off = {
'width' : '190px',…