Anyone know how to make drop down boxes into navigation?
I.E. A drop down box with the options Homepage, Jobs, and Contact Us in how would i make each one a link when clicked?
Thanks :}
Printable View
Anyone know how to make drop down boxes into navigation?
I.E. A drop down box with the options Homepage, Jobs, and Contact Us in how would i make each one a link when clicked?
Thanks :}
Well
Dynamicdrive.com OR you can cheat even more by using fireworks
Prefferably a HTML code? I just want like the drop down form thing made into a navigation thing.
Use the search to search the forums i helped someone with this not long ago.
EDIT: http://dynamicdrive.com/dynamicindex1/switchmenu.htm
Chris.
Argh not a switch menu! A drop down box! Like you get in forms!
make the drop down box and where it is like [option]Home[/option] or something like that put link tags inside the option Tags ???
That was random but it might work. Also try putting the link tags outside the option tags ???
I tried that Numark didnt work :{
Robbie, sort of but without a go button, just on click i need it to go there.
you mean just standard dropdown menu nav with js?
That should work, although its off the top of my head code that i aint checked so no garenteesHTML Code:
<select
onmouseup= "location.href = this.options[this.selectedIndex].value;">
<option value="http://site.com">Site</option>
<option value="http://thybag.co.uk">Thybag</option>
</select>
Thanks entor! ;-D