• Resolved Scott Foshee

    (@scott-foshee)


    I am trying to find a pugin to create a drop down list of states and then a list of locations for each state like I found here https://www.shoshanna.com/stockists

    Does anyone know of a plugin that will do this, or an example of the code I would need to put it in my WordPress page?

    Thank you very much for your help!

Viewing 1 replies (of 1 total)
  • Thread Starter Scott Foshee

    (@scott-foshee)

    This is what I ended up doing.

    <center>
    <H4>SELECT YOUR LOCATION</H4>
    <form>
    <select name="menu" style="font-family:'Tahoma';color:#000000;background-color:#FFFFFF;font-size:10pt;">
    <option>SELECT</option>
    <option value="https://YOURLINKHERE">Alabama</option>
    <option value="https://YOURLINKHERE">Alaska</option>
    <option value="https://YOURLINKHERE">Arizona</option>
    <option value="https://YOURLINKHERE">Arkansas</option>
    </select>
    <input type="button" onClick="location=this.form.menu.options[this.form.menu.selectedIndex].value;" value="Go" style="font-family:'Tahoma';color:#000000;background-color:#FFFFFF;font-size:10pt;">
    </form>
    </center>
Viewing 1 replies (of 1 total)
  • The topic ‘Trying to create a drop down list of states and then list of locations (Example)’ is closed to new replies.