Question:

Were can I get codes for those drop down menu bars?

by  |  earlier

0 LIKES UnLike

the ones were you press the arrow and its like a scrollbar

 Tags:

   Report

3 ANSWERS


  1. I use brothercake's js dropdown from http://www.dynamicdrive.com/


  2. A JavaScript Drop-Down List of Links, Version 2:

    http://www.mcfedries.com/JavaScript/link...

    That's a much better version except for the tags being all in uppercase.  They need to be in lowercase for current web standards.

    Whatever, DO NOT user tables for a layout.  Use HTML/CSS/DIVs to  a proper layout.  Table tags are for tabular data only.

    Ron

  3. Those are an HTML feature called 'select list'.  They are a very old feature of HTML.  Here's an example from a table that I recently did:

    <tr><td width="40%">Select Catagory</td>

    <td><select id="catagory" name ="catagory" onchange = "setBookList()">

    <option>

    <option> Computer Science

    <option> Math

    <option> Management Science

    </select></td>

    </tr>

    +add

    I disagree with PayneLes...

    There's nothing wrong with using tables for layout.  They are easy, have been around for a long time, and reliable.  More to the point of your question: The select list is a type of input (others include text, button, radio).  There's no connection between the select list and the table.

Question Stats

Latest activity: earlier.
This question has 3 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.