I have a simple HMTL web page and with a drop-down list. It's suppose to be drop-down list of pages but I can't figure out how to redirect someone to a page based on the option they select form the list. I'm new at programming so this may be a stupid HTML question. Can anyone help me? Thanks.
<SELECT NAME="page" onChange="submit()" style="font-size: 8pt">
<option value="">----------------------------
<option selected>Choose a Page
<option value="">----------------------------
<option value="page1">Page 1
<option value="page2">Page 2
</select>
I want to to be able to go to a specific web page based on the option I select, ex: If I select Page 1 I want to go to a page called home.htm or Page 2 go to a page called contanct.htm. Thanks for any help!!!
<SELECT NAME="page" onChange="submit()" style="font-size: 8pt">
<option value="">----------------------------
<option selected>Choose a Page
<option value="">----------------------------
<option value="page1">Page 1
<option value="page2">Page 2
</select>
I want to to be able to go to a specific web page based on the option I select, ex: If I select Page 1 I want to go to a page called home.htm or Page 2 go to a page called contanct.htm. Thanks for any help!!!