How do you find all selected options of HTML select tag in jquery?
To use "attribute" selector in combination of ":selected" selector, which returns only selected options.
See following jQuery selector to retrieve all selected options of <select> tag with multiple=true :
$('[name=NameOfSelectedTag] :selected')