Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Dynamic Dropdowns Reply To: Dynamic Dropdowns

#241835
brijazz
Participant

I implemented your suggestion… perhaps the problem is in the markup? Pardon my ignorance here; I’m a music teacher trying to put up a basic scheduling tool for my students and learning as I go :) Here’s my site: http://www.keynotemusicstudio.ca/DynamicDropdown/

And my markup:

        <select id="text-one">
        <option selected value="base">Please Select</option>
        <option value="piano">Piano</option>
        <option value="guitar">Guitar</option>
    </select>

  <br />

<select id="text-two">
    <option>(choose an instrument above)</option>
</select>

<br />

<select id="text-three">
    <option>(choose a lesson day above)</option>
</select>