$(document).ready(function() { $(document).on("click",".faqBlock .faqHeader", function() { if(!$(this).parent(".item").hasClass("active")){ $(".faqBlock .item").removeClass("active"); $(".faqBlock .item .answer").css("height", 0); $(this).parent(".item").addClass("active"); $(this).parent(".item").find(".answer").css("height", $(this).parent(".item").find(".answer .innerAnswer").outerHeight()); } else { $(".faqBlock .item").removeClass("active"); $(".faqBlock .item .answer").css("height", 0); } }); });