In the navbar area, I want to add an About button, when it's clicked, there's a popover showing some general information. But it's not working
The html
<li class="nav-item">
<button class="btn btn-outline-primary text-sm-center nav-link font-weight-bold" data-toggle="popover" title="About this page" data-content="Test" id="B_About">
About
</button>
</li>
and the script to initialize it
$( document ).ready(function() {
$('#B_About').popover({
container: 'body'
});
});
bootstrap.min.js & bootstrap.bundle.min.js are included.
Is there's any issue here?