if a checkbox is checked code example
Example: How to check whether a checkbox is checked in jQuery?
//using plane javascript
if(document.getElementById('on_or_off_checkbox').checked) {
//I am checked
}
//using jQuery
if($('#on_or_off_checkbox').is(':checked')){
//I am checked
}