I have a website where I have multiple collection lists inside the TABS component. Now whenever I go to any other tab besides active tab on published site - the previous button jumps to the active tab-1.
Can someone please help in order to fix this issue. Thank you!
Webflow Support. please help!
Hi @Shahzaib_Ali
Please provide a read-only link so that the community can help you look into your problem.
here you go! - here’s the published link where the reports tab section is having quite a problem.
The issue was fixed after an extensive search for the solution.
Had the same issue and a fix. This code will use local storage to save the last known tab(even after the refresh that comes with pagination). This will save the tab even if you leave the page and come back.
the code should be a simple cut and paste into your page /body code area.
<script type="text/javascript">
$(document).ready(function () {
function activate(tab) {
// switch all tabs off
$(".w--current").removeClass(" w--current");
// switch this tab on
…
Please find above the link for the fix.