You want to build a dropdown filter tied to a Collection List that lets users choose a neighborhood and then redirects them to a dynamic Collection Page based on that choice.
Webflow doesn’t natively support CMS-driven select options. To work around this, use custom code to populate the select field with CMS items:
<option> using interpolation: Example: <option value="/neighborhoods/{{slug}}">{{name}}</option>
id="neighborhood-select") so you can target it with a script.
</body>) to listen for selection:
Example inline script:
`document.getElementById('neighborhood-select').addEventListener('change', function() {
if (this.value) window.location.href = this.value;
});`
<option selected disabled>Select a neighborhood</option>
This prevents submission unless the user chooses a valid option.
Create a dropdown menu using a dynamic Collection List, render each item as an <option> with its slug as the value, and attach a JavaScript redirect to load the selected Collection Page. Since CMS items can’t populate native select fields automatically in Webflow, an HTML Embed and custom script are required.