Link to WIX page from dropdown

I have a simple dropdown and a button next to it.
Want I want to achieve is, that if the user selects an item from that dropdown and clicks the button he is redirected to a specific wix page. Every item in the dropdown list should link to a page.

I searched the forum but couldn’t find a solution for that problem, there was only an old tutorial video linked which isn’t available anymore.

Anyone who can point me in the right direction ?

Hello. It sounds to me like you need to use wix-location.to.

Capture the value from your dropdown and then onClick you can pass the value. Take a look at the docs and let me know if this will work for you

wixLocation.to(dropdownValue);

Thank you, I will check