jquery toggle a checkbox code example

Example 1: jquery toggle checkbox

checkBoxes.attr("checked", !checkBoxes.attr("checked"));

Example 2: Toggle checkbox checking in jquery

$(document).ready(function() {
    $("#select-all-teammembers").click(function() {
        var checkBoxes = $("input[name=recipients\\[\\]]");
        checkBoxes.prop("checked", !checkBoxes.prop("checked"));
    });                 
});

Example 3: toggle checkbox jquery

$("#chkAll").on("click",function(){
    $("input[name=checkBoxName]").prop("checked",$(this).prop("checked"));
});