This site is launching soon.
jQuery(document).ready(function($) { // Target WPBakery accordion links in Divi context $('.vc_tta-accordion .vc_tta-panel-title a').on('click', function(e) { e.preventDefault(); // Kill default anchor scroll e.stopImmediatePropagation(); // Stop Divi/other handlers from interfering // Manually trigger WPBakery toggle (fallback if native JS fails) var panel = $(this).closest('.vc_tta-panel'); panel.toggleClass('vc_active'); panel.find('.vc_tta-panel-body').slideToggle(300); }); });