Skip to main content

test

document.addEventListener("DOMContentLoaded", function () { const switcher = UIkit.switcher('.product-switcher-mbl'); if (!switcher) return; UIkit.util.on('.product-switcher-mbl', 'shown', function () { const tabs = document.querySelectorAll('.product-switcher-mbl li'); const panels = document.querySelectorAll('.product-switcher-mbl-content > li'); tabs.forEach((tab, index) => { if (index !== switcher.index()) { tab.classList.remove('uk-active'); } }); panels.forEach((panel, index) => { if (index !== switcher.index()) { panel.classList.remove('uk-active'); } }); }); });