I have a question about dropdown events. Assume I have two dropdowns, when the option of the first dropdown is changed, all the options of the second dropdown are replaced with other. For example, assume the first dropdown holds the following options:
- Car
- Bike
Now, if I select the option Car, the second dropdown will contain the following options:
- Ford
- Toyota
while if I select the option Bike, the second dropdown will contain the following options:
- Harley Davidson
- Ducati
Is there an event that can be used to detect the refresh of the options for the second dropdown?
Thank you