the .click() event doesn’t seem to work on select, please see: http://jsfiddle.net/fMTzD/
Even before the options are shown, I need the jQuery click function to do something. Is is possible? I don’t mind even if the options are not shown at all.
Thanks
I would use
onFocusinstead (althoughonMouseUpandonMouseDownare suitable alternatives):See my updates to your jsfiddle.
You cannot use
onChangeas that is triggered after the user chooses an option from the dropdown.