if input type checkbox is checked jquery code example

Example 1: 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
}

Example 2: checkbox is checked jquery

$("#out_of_stock_toggle").click(function(){
      if($(this).is(':checked')){
        //show oos
        $(".oos").fadeIn();
      }else{
        //hide oos
        $(".oos").fadeOut();
      }
    });

Example 3: jquery if checkbox is checked

if ($('input.checkbox_check').is(':checked')) {