Answers for "jquery get all checked values into array"

0

how to get name array value checked in jquery

$("input:checkbox[name=type]:checked").each(function(){
    yourArray.push($(this).val());
});
Posted by: Guest on November-12-2020
0

jquery get selected checkbox value array

$("#merge_button").click(function(event){
    event.preventDefault();
    var searchIDs = $("#find-table input:checkbox:checked").map(function(){
      return $(this).val();
    }).get(); // <----
    console.log(searchIDs);
});
Posted by: Guest on July-24-2021

Code answers related to "jquery get all checked values into array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language