Ok so I want a drop down select form that when selected on a certain state the user will be redirected to that state’s page that I have on my website (www.mysite.com/california)
<div id="DropDown">
<h3 class="Header">Pick Your State</h3>
<select id="state">
<option value="www.mysite.com/california">California</option>
<option value="www.mysite.com/utah">Utah</option>
</select>
</div>
What do I need to do so it executes the option values and redirects the user to the url?
You will need js/jquery for this. WordPress has jQuery so something like this would suffice: