I'm currently developing a web application that includes four dropdown lists.
<select>// loading dynamic data</select
<select>// loading dynamic data based on selection from dropdown1</select
<select>// loading dynamic data based on selection from dropdown2</select
<select>// loading dynamic data based on selection from dropdown3</select
My goal is to make dropdowns 2, 3, and 4 uneditable. When the user changes the selection in dropdown1, dropdown2 should become editable. Then, when the text in dropdown2 is changed, dropdown3 should become visible, and so forth.
I would greatly appreciate your assistance with this. Thank you!