check a checkbox is checked or not in jquery


if(jQuery(“#checkbox-control-0”).prop(‘checked’) == true){
console.log(‘check box is checked’);
}
else{
console.log(‘check box is not checked’);
}

Leave a Comment

Your email address will not be published. Required fields are marked *