Answers for "how to get the value in array using of checkboxes using jquery"

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 "how to get the value in array using of checkboxes using jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language