I\'d like to detect if a drop down is expanded or not. I don\'t want to use extra event handlers for click/mouseover etc because the drop-downs are dynamic and for other rea
Maybe you could do something like this:
$('#dropdown').live('click', function(){ //bind mousewheel here }); $('#dropdown').live('change', function(){ //unbind mousewheel here })