Possible Duplicate:
jquery click event on select option element in chrome
I'm using a select tag for sorting a table. However, I want the sorting to happen every time an option is selected, and not just when it's changed.
(i'm using jquery) That's why I believe the .change() event isn't right for this situation.
I tried binding the .click() event on the <option>'s, but chrome doesn't fire those events.
any ideas?
Thanks
EDIT: My Solution
Thank you everyone for you responses.
I ended up solving this using a different approach.
I added a neutral option :
<select>
<option>--Select--</option> <--new option
<option>Name</option>
<option>Date</option>
</select>
then, every time a sort happened directly from the table, I reset the Select index to 0, so whatever you chose will always fire the .change() event.