Hi have been looking around how to do something like this with jquery or JavaScript but can't seem to find it.
So let's say I have a form with a select field in it.
Ex:
<select id="Country">
<option value="USA">USA</option>
<option value="Canada">Canada</option>
Etc.....
</select>
All I want is when user selects the option with value="Canada" To have them redirected to a different URL. Note: I can't modify the I need to be able to have jquery/javascript see value Canada was selected and send them to a different URL as soon as they make that selection.