// faq expand and collapse $('.mcs-faq--header').click(function(e){ if ($(this).hasClass('mcs-faq--header-active')) { $(this).removeClass('mcs-faq--header-active'); $(this).siblings('.mcs-faq--content').slideUp('fast'); } else { $('.mcs-faq--header').removeClass('mcs-faq--header-active'); $('.mcs-faq--content').slideUp('fast'); $(this).addClass('mcs-faq--header-active'); $(this).siblings('.mcs-faq--content').slideDown('fast'); } });