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?
3 Answers
4
votes
3
votes
1
votes
I would use $.map
:
var values = $('#mySelect option:selected').map(function() {
return this.value; // or $(this).val()
}).get();