Home › Forums › JavaScript › Dynamic Dropdowns › Reply To: Dynamic Dropdowns
May 18, 2016 at 9:58 am
#241839
Participant
If I understand this; you still need to create a third list in the Jquery.
I made something similar; but placed my options in the button I used. When looking at your page, it stops after the second selection.
You could try this:
Add another Jquery:
$("#text-three").change(function() { $("#text-three").show(); $("#text-three").load("textdata/" + $(this).val() + ".txt"); });
The last option displays the chosen item and stops the dropdowns.
I’m still new myself; but I made something similar; without multiple dropdowns and just places all my options inside the HTML and not a separate sheet.