Hello,
I'm looping through multiple checkboxes with the same class with function each() and inside the loop I need to be able to tell whether the checkbox is checked or not. How to do that?
$('.checkbox').each(function() {
var is_checked = 'no';
// I need to change the value of the is_checked variable to 'yes'
// if the checkbox is checked
//
});