How to insert a drop down box on my page

Discussion in 'HTML & Website Design' started by crappy-ownage, Dec 14, 2008.

  1. #1
    I have an html page, and I was wondering if it was possible to have something like a dropdown box, like Forum Jump most forum softwares have.
    [​IMG]

    It will go to a different page when you choose an option and click Go.

    Please help me.
     
    crappy-ownage, Dec 14, 2008 IP
  2. chrizz_msweb

    chrizz_msweb Greenhorn

    Messages:
    47
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    16
    #2
    <img src = "go.jpg" onclick = "onClickGo">

    <script>
    function onClickGo()
    {
    if (combo.value == 1) window.open("page1.html", target = "_self");
    if (combo.value == 2) window.open("page2.html", target = "_self");
    }

    </script>
     
    chrizz_msweb, Dec 15, 2008 IP
  3. crappy-ownage

    crappy-ownage Peon

    Messages:
    55
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I don't see a dropdown box
     
    crappy-ownage, Dec 15, 2008 IP
  4. crappy-ownage

    crappy-ownage Peon

    Messages:
    55
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Bump..........
     
    crappy-ownage, Dec 17, 2008 IP