Home › Forums › JavaScript › Dynamic Dropdowns › Reply To: Dynamic Dropdowns
May 18, 2016 at 7:51 am
#241835
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>