SyntaxFix
Write A Post
Hire A Developer
Questions
Return true if all checbox are checked in a div
function all_checked (id_div){ all_checked = true; $(id_div+' input[type="checkbox"]').each(function() { all_checked = all_checked && $('this').prop('checked'); } return all_checked; }