/page#tab-name) to your landing page buttons to target specific tabs. data-w-tab.Yes, you can set up buttons on a Webflow landing page that open another page with a specific tab selected, and this requires just a small amount of custom code.
#tab-2) if configured correctly.ID Webflow auto-generates based on the tab link name, or use the Webflow Designer to manually set link IDs.
/pricing#tab-2
ID (e.g., tab-2).
JavaScript Tip:
#id or data-w-tab)
Example (simplified):
document.querySelector("a[href='" + window.location.hash + "']").click();
#tab-name, ensure your tab link (not just the tab pane) in Webflow has the same ID: Select the tab link, go to Settings, and set ID = tab-2, etc.
data-w-tab attribute to match the anchor.
You can open a specific tab on another Webflow page using links with hashes (like /page#tab-name) combined with a short JavaScript snippet that activates the tab on page load. Set matching IDs or data-w-tab attributes and trigger the correct tab link via script.