Forum Moderators: open
I am using frontpage to create a webpage that should include a drop down menu with a number of items (options in it) eg. a,b,c,d,e,f
Now, I know I can make a form using form element in frontpage. My question is :
Can I make each of the drop down items linkable to their respective webpages: ie, when someone selects "a" from the drop down menu, he should reach "a.htm". Similarly I want each of these list items to their respective pages.....can this be done...
do i need to use javascript for this?
If yes, please help with the code!
I am new to this and need to do this urgently!
Thanks in advance!
<form name="jump">
<select name="menu" onChange="location=document.jump.menu.options[document.jump.menu.selectedIndex].value;" value="GO">
<option value="a1.htm">A1</option>
<option value="b1.htm">B1</option>
<option value="c1.htm">C1</option>
<option value="d1.htm">D1</option>
<option value="e1.htm">E1</option>
<option value="f1.htm">F1</option>
</select>
</form>
Hope this is useful, just change it to suit your sites needs =)
Terry