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
just use .click() on data-toggle element but do not forget e.stopPropagation()
.click()
e.stopPropagation()
these one simple line took me for hours, hope it's help :)