views:

111

answers:

2

Do I have to iterate through ALL the and set remove the 'selected' attribute or is there a better way?

A: 

selected-selctor is probably what you are looking for

tDo
+1  A: 
$("#my_select option:selected").removeAttr("selected");
meagar
yep this is what I used!
shogun