boîte à cocher jQuery à basculer
checkBoxes.attr("checked", !checkBoxes.attr("checked"));
Thoughtless Termite
checkBoxes.attr("checked", !checkBoxes.attr("checked"));
$(document).ready(function() {
$("#select-all-teammembers").click(function() {
var checkBoxes = $("input[name=recipients\\[\\]]");
checkBoxes.prop("checked", !checkBoxes.prop("checked"));
});
});
$('#choose_address2').click(function(){
$('.toggle').each(function(){
$(this).prop('checked', !$(this)[0].checked);
})
})
$("#chkAll").on("click",function(){
$("input[name=checkBoxName]").prop("checked",$(this).prop("checked"));
});