check a checkbox is checked or not in jquery Leave a Comment / jquery / By Kanha Help Me if(jQuery(“#checkbox-control-0”).prop(‘checked’) == true){ console.log(‘check box is checked’); } else{ console.log(‘check box is not checked’); } Related