Select Box And IE

Select Box And IE

Hello all,

i have this problem. I've got a <select> with the multiple attribute on
and then i got some jQuery doing som functions when one of the options is selected.
Currently my code looks like this

  1. $("select[name=(thename)] option").click(function() {
  2.       // do stuff..
  3. });
and both this and the same with live("click") works in Chrome and FF, but once again IE drops the ball
(like always -.-). I've also tried with .change() but nothing..

Any help is appreciated :-)