I\'m trying to open a Bootstrap dropdown when I click a item of another dropdown.
The idea is to select a city from the first drop down - then the script will auto o
You can achieve the same thing using Native JavaScript like this:
document.getElementById('XYZ').click('open');
It works on all browsers.