$('select').bind('click contextmenu',function(ev){
})
ev.target
is always a select
,not option
.
How can I know which one is now being clicked?
Don't tell me to do this:
$('option').bind('click contextmenu',function(ev){
})
Because it's not supported in IE8,and you can test it yourself!
EDIT
It should also support right click,which fires the contextmenu
event