1$("#chkAll").on("click",function(){
2 $("input[name=checkBoxName]").prop("checked",$(this).prop("checked"));
3});
4
1$(document).ready(function() {
2 $("#select-all-teammembers").click(function() {
3 var checkBoxes = $("input[name=recipients\\[\\]]");
4 checkBoxes.prop("checked", !checkBoxes.prop("checked"));
5 });
6});
7