How to check in a each() function if the first and the second matched element have the prop checked ?
JavaScript
x
12
12
1
$(document).on('click', '#submitBtn', function(e) {
2
var $this = $(this),
3
$checkboxItems = $('input:checkbox[name="checkbox-acceptance"]');
4
5
6
$checkboxItems.each(function( index ){
7
8
// if index 0 and index 1 have .prop( 'checked ' ) do stuff ..
9
10
}
11
})
12
Advertisement
Answer
You don’t want to use each
for this. Just check the values with simple indexing:
JavaScript
1
2
1
if ($checkboxItems[0].checked && $checkboxItems[1].checked)
2