I want to create select input that will redirect an user on changing the option. I want to do that without any jQuery, is this possible? I remember using aria controls once, but I can't find any code, or any examples in the internet.
<select>
<option value="1"><a href="all.php">All</a></option>
<option value="2"><a href="doSomething1.php">Do something</a></option>
<option value="3"><a href="doSomething2.php">Do something else</a></option>
</select>
How can I do that?