Yes, you can configure Webflow buttons to open a different page with a specific tab active. This does require a small amount of custom code, but it's a simple and common practice.
tab
link IDs on the destination pagetab1
, tab2
, etc./services#tab2
).Link
setting to go to the destination page using the tab ID as a hash anchor — for example:/services#tab2
tab2
.Webflow's native tabs won't auto-switch based solely on a hash in the URL, so you need to add a small script to the tab page to activate the tab based on the URL fragment.
Tip: Add this code to the Page Settings → Before
tag of the destination page:
window.location.hash
A typical script structure would look like this:
#tab2
).click()
on itIf you need help structuring this snippet specifically, let me know which tab names or classes you're using.
w--tab-link
.You can set up a Webflow button to open a different page with a specific tab active by linking to that page with a hash (e.g., #tab2
) and adding a small script on the destination page to detect and activate the corresponding tab. This requires minimal code and works well for tabbed navigation.