How to turn a pull-down or drop-down list into a drop-down menu (without and easier than using Dreamweaver)
I have another short and pretty popular post about how to Create a Drop-down Menu with Dreamweaver. The drop-down menu discussed in that post is different from the pull-down menu mentioned here although most of the times people use the terms “drop-down” and “pull-down” interchangeably. The menu we are talking about here is done by using the <select> and <option> tags and looks like the thumbnail on the left.
This is not done in Dreamweaver; however, if you read on, you’ll see there’s no need for using Dreamweaver for this. Basically, you only need to copy/paste the code (below) to your web file, change some URLs and finish.
This dropdown has been very popular as it’s a simple but great way to save space. We can squeeze a long list of navigational items into one line. Many mobile-compliant websites take advantage of the compact size of this drop-down and use it as the main menu/navigation system.
Drop-down with a submit (go) button
The demo below says for itself. You select an item and press the button to go to the corresponding page. You can copy and paste the code in the box below to your HTML file to use it. You just need to change the details under each <option> tag.
How about the pull-down menu using jquery instead of the regular javascript?