I want to know when the element has been dropped down.
I don't want to wait until a value has been selected.
Is there an event I can hook into?
I'm happy to use JQuery/ Javascript to accomplish this
Thanks
UPDATE: Thanks for the suggestions.
focus
isn't quite right as it fires when the user tabs into the element;
click
meets my needs as (although as @billyonecan says it doesn't fire for a keyboard dropdown) I am only interested in mouse-initiated dropdowns (the bug I'm addressing doesn't happen for keyboard-users).
For the record I am interested in the items being dropped down, not an item being selected.
http://jsfiddle.net/fjqmj/16/ shows a comparison of all the suggestions.