function calculate() { $('#payments').find('.checkBoxP').each(function () { if (this.checked) { alert('its on'); } else { alert('nope'); } }); }