Basically I have a form and I would like for someone to be redirected to a certain page with each option. After clicking an option I want to redirect them to that page.
My code:
<select>
<option label="Pick your number" value="Number" selected="selected"></option>
<option label="1" value="one></option>
<option label="2" value="two"></option>
<option label="3" value="three"></option>
</select>
For example: after selecting option two they would be redirected to a page two.html
I know I've worded this a bit confusing, so I hope you guys understand what I mean and any help is much appreciated!