Drop Down Menu

April 13th, 2009 | Tags:

Tutorial Description:

Learn how to create a drop down menu.

Put this code were you want your drop down menu to appear.

<select name="Menu Name" size="1" class="dropdown" onchange="submit()">
<option selected>Menu Name
<option>----------------------------</option>
<option value="Web Address 1">Link 1</option>
<option value="Web Address 2">Link 2</option>
<option value="Web Address 3">Link 3</option>
<option value="Web Address 4">Link 4</option>
</select>

That should give you a nice automatic drop down menu and when any option is selected, is will automatically submit the form.

No comments yet.
TOP