SE friendly combo-box (drop down) menu?

Discussion in 'HTML & Website Design' started by MikeyP, May 31, 2008.

  1. #1
    Can anyone suggest where I can find the code/script (or a generator) for one please?

    I need to replace an existing but non-se friendly one -- <form><option>...</option></form> type -- without altering the page layout.

    Many thanks
    MP
    -
    ;)
     
    MikeyP, May 31, 2008 IP
  2. rochow

    rochow Notable Member

    Messages:
    3,991
    Likes Received:
    245
    Best Answers:
    0
    Trophy Points:
    240
    #2
    That is the semantic way. You are talking about using it in a form though? (not as a menu)

    <form action="#" method="post">
    <fieldset>
    <label for="referrer">How did you find us?</label>
    <select id="referrer">
    <option>Option</option>
    <option>Option</option>
    <option>Option</option>
    </select>
    </fieldset>
    <form>
     
    rochow, May 31, 2008 IP