You can use the :selected selector, and the inline $.map() function as part of your chain.
$("option:selected").map(function(){ return this.value }).get().join(", ");
You can use the :selected selector, and the inline $.map() function as part of your chain.
$("option:selected").map(function(){ return this.value }).get().join(", ");