Answers for "jquery find all input boxes that are checked"

2

jquery get value checkbox checked

console.log($('input[name="locationthemes"]:checked').serialize());

//or

$('input[name="locationthemes"]:checked').each(function() {
   console.log(this.value);
});
Posted by: Guest on August-01-2020
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 find all input boxes that are checked"

Code answers related to "Javascript"

Browse Popular Code Answers by Language