Having a large problem with jQuery Tabs.
Im trying to load the tabs on my sites product page... When the page loads i see that tabs content for a second (standard html t
Angelica had the answer that worked for me. I used this in a requirejs file for any page with the class 'tabs' as the selector for the tabs.
jQuery(".tabs ul li a").each(function() { jQuery(this).attr("href", location.href.toString()+jQuery(this).attr("href")); }); jQuery(".tabs").tabs();