Answers for "get value by name array from select in jquery"

0

get value by name array from select in jquery

var val1=[]; 
 $('select[name="min_select[]"] option:selected').each(function() {
  val1.push($(this).val());
 });
Posted by: Guest on August-02-2021

Code answers related to "get value by name array from select in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language