How Can jQuery Tell If a Checkbox Is Checked Or Not?
Checking whether a checkbox is checked or not could come in handy if you want to show additional fields related to it. To check if it is checked or not:
if(jQuery(element).is(':checked')){
// If True
}