I’m looking to find the Javascript Event I need to put into jQuery’s .bind function in order to have the function triggered when a selection is made from a <select> element.
At the moment I’m using .bind('change',function() { ...}) but I need the event to trigger when the selected option is chosen again.
Any suggestions?
Change on select boxes is unreliable anyway. Read:
http://www.quirksmode.org/dom/events/change.html#t05
I’d probably go for something click (but be suspicious, somebody (–> IE) is going to make your life difficult). Or build something yourself without select.