How To Link a Dron Down box without JavaScript

Discussion in 'HTML & Website Design' started by Azemati, Jul 24, 2008.

  1. #1
    hello
    How To Link a Drop Down box without JavaScript?

    I use this code, but it doesn't work:

    <select size="1" id="MAB">
    <option><a href="http://www.test.com/archives/2008/07/">July 2008</a></option>
    <option><a href="http://www.test.com/archives/2008/06/">June 2008</a></option>
    </select>
    Code (markup):
     
    Azemati, Jul 24, 2008 IP
  2. itcn

    itcn Well-Known Member

    Messages:
    795
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    118
    #2
    You either need to use javascript, or a server-side processing script such as PHP or ASP.NET
     
    itcn, Jul 24, 2008 IP
  3. Azemati

    Azemati Well-Known Member

    Messages:
    123
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    121
    #3
    ok, thanks.

    how do i can this with java scripts code?
     
    Azemati, Jul 24, 2008 IP
  4. Cri2T

    Cri2T Peon

    Messages:
    104
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #4
    That code is incorrect,

    
    <form method="post" action="pagetobeloaded.php">
    <select id="mab" name="dropdown">
    <option value="July2008">July 2008</option>
    <option value="June2008">June 2008</option>
    </select>
    </form>
    
    Code (markup):
    is correct, though you will need a Server Side Scripting Language to catch the values on the loaded page and you wont be able to load different pages for different values.


    Here is a JavaScript tutorial on drop down menus.
    http://www.webdesign.org/web/html-and-css/tutorials/css-menu-using-javascript.9094.html
     
    Cri2T, Jul 24, 2008 IP
  5. itcn

    itcn Well-Known Member

    Messages:
    795
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    118
    #5
    itcn, Jul 24, 2008 IP
  6. Azemati

    Azemati Well-Known Member

    Messages:
    123
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    121
    #6
    Thanks :) :)
     
    Azemati, Jul 24, 2008 IP
  7. Azemati

    Azemati Well-Known Member

    Messages:
    123
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    121
    #7
    Yes, Thanks in advance. it is very very useful and nice. thanks again.
     
    Azemati, Jul 24, 2008 IP