jquery checkbox check all code example
Example 1: select all checkbox jquery
$('#select_all').change(function() {
var checkboxes = $(this).closest('form').find(':checkbox');
checkboxes.prop('checked', $(this).is(':checked'));
});
Example 2: find all checkbox inside div jquery
$('#selectChb').click(function(){
$(':checkbox').prop("checked", true);
});