JSFiddle - React, Tailwind, and code Playground

by praveen_jegan

HTML

<select id="select">
    <option value="#">Select a location</option>
    <option value="location.htm">Location</option>
    <option value="other.htm">Other</option>
</select>

JavaScript

$(document).ready(function () {
    $('#select').change(function () {
        location.href = $(this).val();
    });
});