checkbox click toggle jquery class code example
Example 1: jquery toggle checkbox
checkBoxes.attr("checked", !checkBoxes.attr("checked"));
Example 2: toggle checkbox jquery
$("#chkAll").on("click",function(){
$("input[name=checkBoxName]").prop("checked",$(this).prop("checked"));
});