How can I get the selected text (not the selected value) from a drop-down list in jQuery?
If you want the result as a list, then use:
x=[]; $("#list_id").children(':selected').each(function(){x.push($(this).text());})