Yes, you can create a Webflow landing page with buttons that open a different page with a specific tab active—this requires a small amount of custom code.
tab-1
, tab-2
, etc.)./product-page?tab=pricing
</body>
) or add custom code in the Page Settings → Before tag.
const tabParam = new URLSearchParams(window.location.search).get('tab');
.click()
on the appropriate tab link using JavaScript.id="tab-pricing"
).tabParam === "pricing"
, you target and click #tab-pricing
.You can set up Webflow buttons that open another page with a specific tab already active by:
No advanced development is required—just simple JavaScript and good use of Webflow's existing Tabs and Link settings.