HTML CODE
<select class="form-control" name="min_select[]">
<option value="15">15</option>
<option value="30">30</option>
</select>
JQuery Code
var val1[];
$('select[name="min_select[]"] option:selected').each(function() {
val1.push($(this).val());
});
when i run this code I get empty val array
selectwith multiple attribute?