Obtenez la valeur par nom du nom dans SELECT dans jQuery

 var val1=[]; 
 $('select[name="min_select[]"] option:selected').each(function() {
  val1.push($(this).val());
 });
Nervous Narwhal