Select all checkbox
//select all checkbox
$('.thCheckbox').on('click', function () {
$('table').find('tbody .tdCheckbox').prop('checked', this.checked);
});
//checkbox listing
$('.tdCheckbox').on('change', function (e) {
tdCheckboxChecked = $('table').find('tbody .tdCheckbox:checkbox:checked').length;
$('.thCheckbox').prop('checked', (tdCheckboxChecked === $('table').find('tbody .tdCheckbox').length));
})