to detect and activate the first non-empty tab.
When using Webflow Tabs with dynamic CMS content, the default behavior may not automatically set the active tab to the one containing content. You can achieve this with custom JavaScript by detecting populated tabs and setting the first one as active.
Add the following inline JavaScript within a <script>
tag:
document.addEventListener("DOMContentLoaded", function () { let tabs = document.querySelectorAll('.w-tab-link'); let panes = document.querySelectorAll('.w-tab-pane'); for (let i = 0; i < panes.length; i++) { if (panes[i].textContent.trim() !== "") { // Remove existing active classes document.querySelector('.w-tab-link.w--current')?.classList.remove('w--current'); document.querySelector('.w-tab-pane.w--current')?.classList.remove('w--current'); // Set first populated tab as active tabs[i].classList.add('w--current'); panes[i].classList.add('w--current'); break; } }});
To ensure Webflow’s Tabs open on the first populated CMS-generated content, use JavaScript to detect and activate the first non-empty tab pane dynamically. This guarantees a clean user experience, avoiding empty tabs being active by default.