Answers for "jquery show all check checkboxes with checked or not"

6

jquery get all checked checkboxes

var values=[];
$('input[name="your-checkbox-name[]"]:checked').each(function () {
  values[values.length] = (this.checked ? $(this).val() : "");
});
Posted by: Guest on July-27-2021
0

jquery check if all checkbox is not checked

$('#checkAll').click(function () {    
     $('input:checkbox').prop('checked', this.checked);    
 });
Posted by: Guest on August-12-2020

Code answers related to "jquery show all check checkboxes with checked or not"

Code answers related to "Javascript"

Browse Popular Code Answers by Language