I would like to create a menu form, much like the one in the top left side of this site. I assume it is built around a jump menu type form, but I am not sure how to create it. Can someone point me toward a tutorial or offer some advice?
I think that menu is create through Macromedia flash. Visit this site http://www.actionscript.org That site has been very useful to me.
No, I dont think it is a flash form. @knightyme - That is very close to what I want, but I need to add more than one drop down and I need them to work with each other.
this form alone wont help you - you need some kind of script to find the matching results. however, here is the sourcecode for this one, quite simple (stripped most options out, hope you get the idea how it works): <form name="search" method="get"> <!-- START NAVIGATION - LOCATION --> <strong class="txt-theme">Location:</strong><br> <select name="location"> <option value="0" selected>--- All Locations ---</option> <option value="alabama-al" >Alabama</option> <option value="wyoming-wy" >Wyoming</option> </select> <!-- END NAVIGATION - LOCATION --> <br> <!-- START NAVIGATION - PROGRAM --> <strong class="txt-theme">Program:</strong><br> <select name="program"> <option value="0" selected>--- All Programs ---</option> <option value="aide-technician" >Aide & Technician</option> <option value="veterinary" >Veterinary</option> </select> <br> <!-- START NAVIGATION - DEGREE --> <strong class="txt-theme">Degree:</strong><br> <select name="degree"> <option value="0" selected>--- All Degrees ---</option> <option value="associate" >Associate</option> <option value="coursework" >Coursework</option> </select> <input type="submit" name="action" value="find stuff"> </form> HTML: