changed the code with chatgpt to this, it works now for me: <script> var Webflow = Webflow || []; Webflow.push(function() { var tabTimeout; var lastTabClickTime = 0; $(document).ready(function() { clearTimeout(tabTimeout); // Clear any previous timeouts // Ensure the first tab is active if none is set as "current" if (!$('.header103_tab-link.w--current').length) { $('.header103_tab-link:first').addClass('w--current'); // Add 'current' class to the first tab } tabLoop(); // Start the tab loop // Add click listener to tab links $('.header103_tab-link').click(function() { lastTabClickTime = Date.now(); clearTimeout(tabTimeout); tabTimeout = setTimeout(tabLoop, 6000); // Restart loop after interaction }); }); function tabLoop() { tabTimeout = setTimeout(function() { // Ensure navbar is closed or tabs menu exists, and enough time has elapsed since the last interaction if (($('.w-nav-menu').length === 0 || !$('.w-nav-button').hasClass('w--open')) && ($('.header103_tabs-menu').length && Date.now() - lastTabClickTime >= 6000)) { var $next = $('.header103_tabs-menu').children('.w--current:first').next(); if ($next.length) { $next.click(); } else { $('.header103_tab-link:first').click(); } } // Recursively call tabLoop tabLoop(); }, 6000); // 6-second delay } }); </script>
Having the same issue, happens on mobile on Chrome for me, on Safari the auto change works fine. When I click on one it starts working, but after reloading the page and not clicking, it doesn't work.

