How can I check if a checkbox in a checkbox array is checked using the id of the checkbox array?
I am using the following code, but it always returns the count of ch
Toggle checkbox checked
$("#checkall").click(function(){ $("input:checkbox").prop( 'checked',$(this).is(":checked") ); })