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
$('#checkbox').is(':checked');
The above code returns true if the checkbox is checked or false if not.