uncheck all checkboxes on button click jquery code example
Example: checkbox on click jquery select all
$("#checkAll").click(function(){
$('input:checkbox').not(this).prop('checked', this.checked);
});
$("#checkAll").click(function(){
$('input:checkbox').not(this).prop('checked', this.checked);
});