how can implement the drop down list in Html?

10 replies
Hi,

I have problem please solved the my problem.
#drop #html #implement #list
  • Profile picture of the author SteveJohnson
    Originally Posted by Devskumar9 View Post

    Hi,

    I have problem...
    That's an understatement if I've ever seen one.
    Signature

    The 2nd Amendment, 1789 - The Original Homeland Security.

    Gun control means never having to say, "I missed you."

    {{ DiscussionBoard.errors[2958238].message }}
    • Profile picture of the author kernelpaniker
      Rehab may be your only option. Good luck.
      {{ DiscussionBoard.errors[2958821].message }}
  • Profile picture of the author hhunt
    Originally Posted by Devskumar9 View Post

    Hi,

    I have problem please solved the my problem.
    I can't believe you expect someone to help you.
    {{ DiscussionBoard.errors[2958842].message }}
  • Profile picture of the author kkoechel
    google CSS dropdown menu

    @mean dudes: it's not his fault English is not his primary language.
    {{ DiscussionBoard.errors[2960442].message }}
  • Profile picture of the author RedMatrix
    Try this:

    HTML Code:
    <select>
      <option value="volvo">Volvo</option>
      <option value="saab">Saab</option>
      <option value="mercedes">Mercedes</option>
      <option value="audi">Audi</option>
    </select>
    Signature

    ~Dave

    {{ DiscussionBoard.errors[2961906].message }}
  • Code:
    <html>
    <head>
    <title>My Page</title>
    </head>
    <body>
    <form name="myform" action="http://www.mydomain.com/myformhandler.cgi" method="POST">
    <div align="center">
    <select name="mydropdown">
    <option value="Milk">Fresh Milk</option>
    <option value="Cheese">Old Cheese</option>
    <option value="Bread">Hot Bread</option>
    </select>
    </div>
    </form>
    </body>
    </html>
    {{ DiscussionBoard.errors[2994133].message }}
    • Profile picture of the author signity
      You can also try this......

      <html>
      <body>

      <select>
      <option>--select--</option>
      <option>Volvo</option>
      <option>Saab</option>
      <option>Mercedes</option>
      <option>Audi</option>
      </select>

      </body>
      </html>
      {{ DiscussionBoard.errors[2994158].message }}
  • Profile picture of the author amirsen
    Hi,

    All of friends who gave the answer with code of drop down list is good so the answer of my will be also same for drop down list in HTML.
    {{ DiscussionBoard.errors[3007158].message }}

Trending Topics