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
1$('#choose_address2').click(function(){
2 $('.toggle').each(function(){
3 $(this).prop('checked', !$(this)[0].checked);
4 })
5})