bootstrap.min.js:6 Uncaught TypeError: n is not a constructor returning when I click on the dropdown button

Viewed 6701

I have multiple dropdown menus in my page. Located inside the nav works fine, but the inside of the page does not work

Located inside the nav

enter image description here

inside of the page

enter image description here

enter image description here

what is the problem? Thank you.

3 Answers

bootstrap.budle.min.js or bootstrap.budle.js solves the problem.

As it answer before... popper js v2 not compatible with boostrap

you need to downgrade the popper.js version

cdn:

<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js"></script>
Related