jQuery
$(document).on("click",".checkbox-all",function(){
$(".checkbox").prop("checked",$(".checkbox-all").is(':checked'));
});
$(document).on("click",".checkbox",function(){
var $checkbox = $(".checkbox");
$(".checkbox-all").prop("checked",$checkbox.length == $checkbox.filter(":checked").length);
});