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

#241839
I.m.learning
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.