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