Struggling to create a dropdown menu and encountering this error:
"Uncaught Error: Bootstrap dropdown require Popper.js (https://popper.js.org)
at bootstrap.min.js:6
at bootstrap.min.js:6
at bootstrap.min.js:6"
Explored various solutions in forums but none seems to resolve it. How can I successfully import popper.js?
Edit1:
Discovered a method to import using a script tag, which was all along in the Bootstrap documentation. However, another issue emerged - despite having error-free code, my dropdown button remains unresponsive. Attempted multiple dropdown examples from the Bootstrap docs by copying and pasting, but clicking on the button yields no result :(
!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>About us</title>
<link href="bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="Sobre-Nós.css" rel="stylesheet" type="text/css">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
</head>