$('#faq_accordion > li:has("ul")').each(function() { var close = ''; if ($(this).find('.current')[0]) { $(this).children('a').addClass('current close'); $(this).children('ul').show(); } }); $('#faq_accordion > li > a.faqpanel').on('click', function(e) { e.preventDefault(); $(this).toggleClass('close').next().stop().slideToggle(400); }); $('#faq_accordion > li > a.open').on('click', function(e) { e.preventDefault(); $(this).removeClass('close').next().stop(); }); $('#faq_accordion a[target="_blank"]').each(function() { if (!$(this).attr('class')) { $(this).addClass('newwin'); } }); $('#faq_accordion li a.list_first').on('click', function(e) { e.preventDefault(); $(this).toggleClass('active'); });