My current setup involves a popover that is not initializing properly. The code I am using is shown below:
HTML:
<div data-toggle="popover" data-placement="bottom" data-content="xyz">...</div>
JavaScript:
$(function () {
$('[data-toggle="popover"]').popover()
})
I have made sure to include all necessary CSS and libraries, and have been able to replicate the issue in this fiddle: https://jsfiddle.net/W3R3W0LF666/33rmse7m/
Thus far, I have attempted moving the initialization code to different parts of the JavaScript file to eliminate any hierarchy problems.