I was just wondering if it\'s possible to go through multiple select options and get their values and text(if one is selected get the value and text, if 2 is selected get both o
https://jsfiddle.net/kmgoddard/Lfkvm3ar/4/
$("#mybutton").click(function(){ list = new Array(); $('select > option:selected').each(function() { list.push($(this).val()); }); alert(list.toString()); });