Is there a way to open a select box using Javascript (and jQuery)?
1
Instead of using click, you could use the mousedown handler to capture the mousedown event. mousedown fires before click, so you could call stopPropogation to break the event queue.
click
mousedown
stopPropogation