Answers for "onclick checkbox select all jquery"

-1

checkbox on click jquery select all

$("#checkAll").click(function(){
    $('input:checkbox').not(this).prop('checked', this.checked);
});
Posted by: Guest on October-03-2020
0

select all checkbox jquery

$('#select_all').change(function() {
  var checkboxes = $(this).closest('form').find(':checkbox');
  checkboxes.prop('checked', $(this).is(':checked'));
});
Posted by: Guest on March-15-2021

Code answers related to "onclick checkbox select all jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language