How to open Bootstrap dropdown programmatically

后端 未结 16 1891
轮回少年
轮回少年 2020-12-01 13:56

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

16条回答
  •  攒了一身酷
    2020-12-01 14:21

    You can achieve the same thing using Native JavaScript like this:

     document.getElementById('XYZ').click('open');

    It works on all browsers.

提交回复
热议问题