Link to home
Start Free TrialLog in
Avatar of wesmanbigmig13
wesmanbigmig13Flag for Australia

asked on

HTML Dropdown menu loads a new page

Hi Experts

I have the following form code in place on an HTML page:

      <form action="" method="get">
        <select name="">
          <option>Request a Proposal</option>

        </select>
        <input name="" value="GO" type="submit" />
      </form>

All I would like to do is that when the user clicks the Go/Submit button that it takes them to a page on the site called abc.html

How do I do this?

Thanks
ASKER CERTIFIED SOLUTION
Avatar of goosey1
goosey1

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of wesmanbigmig13

ASKER

Thanks - that was simple enough. Works well.

Final code block was:

<form action="../proposal-form.html" method="post">
        <select name="">
          <option>Request a Proposal</option>

        </select>
        <input name="" value="GO" type="submit" />
      </form>