> me=document.getElementById('subselect');
>
> for(var i = 0;i < me.length;i++) {
>         if(me.options[i].selected == true){
>         }
> } 

Doesn't this work?

$("#subselect option:selected").each(function(){
  // do something with selected options
});

The plugin is good if you are adding/removing options a lot.


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to