Skip to content

Redirect to a link when user selects option in a select

I had an HTML <select> input field in a form, and I wanted to redirect to another relative URL when the user picked a specific option.

You don’t have control over the single option, for example you can’t detect an option was selected “on the option”.

You must listen to the change event in the select itself.

But you can’t access option attributes, just the value of the option.

So I ended up doing this:

<select
  x-on:change="
    if (event.target.value.startsWith('/')) {
      window.location = event.target.value
    }
  "
>
  <option value="/login">Login</option>
  <option value="/signup">Signup</option>
</select>

I’m using Alpine here as I used that in the app.

In plain JS works in the exact same way, except how you get the target, and you use onchange:

<select
  onchange="
    if (this.value.startsWith('/')) {
      window.location = this.value
    }
  "
>
  <option value="/login">Login</option>
  <option value="/signup">Signup</option>
</select>

Of course you can use an event listener too but this works quickly and is “in the element” rather than having to use selectors and ids or classes.

→ Get my HTML Handbook

I wrote 17 books to help you become a better developer, download them all at $0 cost by joining my newsletter

  • C Handbook
  • Command Line Handbook
  • CSS Handbook
  • Express Handbook
  • Git Cheat Sheet
  • Go Handbook
  • HTML Handbook
  • JS Handbook
  • Laravel Handbook
  • Next.js Handbook
  • Node.js Handbook
  • PHP Handbook
  • Python Handbook
  • React Handbook
  • SQL Handbook
  • Svelte Handbook
  • Swift Handbook

JOIN MY CODING BOOTCAMP, an amazing cohort course that will be a huge step up in your coding career - covering React, Next.js - next edition February 2025

Bootcamp 2025

Join the waiting list