Forum Moderators: phranque

Message Too Old, No Replies

How do I do this kind of nav menu?

         

byepolar

7:04 pm on Mar 15, 2003 (gmt 0)

10+ Year Member



The drop-down menu seen here:
<snip> no urls please <snip>

[edited by: oilman at 7:27 pm (utc) on Mar. 15, 2003]

oilman

7:26 pm on Mar 15, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



you createa menu like:
<select name="choice" size="1" onChange="jump(this.form)">
<option value="" selected>Jump To All Subjects</option>
<option value="">- - - - - - - - - -</option>
<option value="something.htm">something</option>
<option value="soemthingelse.com">somethingelse</option>

and so on...

that particular site uses a little piece of javascript at the top of the page as well to control the menu jumps. If you view the source code you can see it between the <script> and </script> at the top of the page.