add submit button to existing form

  • Thread starter Thread starter bishop2001
  • Start date Start date
B

bishop2001

Greetings id like to add a submit button to my existing form which currently auto submits when you select a choice from the dropdown


HTML Code:
<form action="../">
<select onchange="window.open(this.options[this.selectedIndex].value,'_top')">
<option value="">Choose a destination...</option>
<option selected disabled hidden value=''></option>"
<option value="8.15.42.html">New York</option>
<option value="8.14.15.html">New York</option>
</select>
</form>

Continue reading...
 
Back
Top