jquery check all checkboxes in table code example
Example: find all checkbox inside div jquery
$('#selectChb').click(function(){
$(':checkbox').prop("checked", true);
});
$('#selectChb').click(function(){
$(':checkbox').prop("checked", true);
});