I have a selection box that allows you to select multiple options. I need to access all the selected values with JavaScript - possible a array of values?
var values = []; $('#my_select option:selected').each(function(i, selected){ values[i] = $(selected).attr('value'); });