Here's what I'm trying to create.
1) I want a drop-down menu listing six dealers.
2) Each will take you to an external website.
3) I want to be able to select a dealer from the drop-down, click "GO" and then be taken to that dealer's web site.
4) When I click the Back button on my browser, I want the default of option of this drop-down to revert back to "Find a Sampler dealer . . ."
I hope this made sense. Thank you.
1) I want a drop-down menu listing six dealers.
2) Each will take you to an external website.
3) I want to be able to select a dealer from the drop-down, click "GO" and then be taken to that dealer's web site.
4) When I click the Back button on my browser, I want the default of option of this drop-down to revert back to "Find a Sampler dealer . . ."
I hope this made sense. Thank you.
Code:
<form id="form2" name="form2" method="post" action="">
<select name="jumpMenu" id="jumpMenu" onchange="MM_jumpMenu('parent',this,0)">
<option value="" disabled="disabled" select="selected">Find a Sample Dealer...</option>
<option value="http://www.somewebsite1.com">- Dealer 1</option>
<option value="http://www.somewebsite2.com">- Dealer 2</option>
<option value="http://www.somewebsite3.com">- Dealer 3</option>
<option value="http://www.somewebsite4.com">- Dealer 4</option>
<option value="http://www.somewebsite5.com">- Dealer 5</option>
<option value="http://www.somewebsite6.com">- Dealer 6</option>
</select>
<input type="submit" value="GO">
</form>