JSFiddle - React, Tailwind, and code Playground
by kkdaily
HTML
<a tabindex="0" class="btn btn-lg btn-danger" role="button" data-toggle="popover" data-trigger="focus" title="Dismissible popover" data-content="And here's some amazing content. It's very engaging. Right?">Dismissible popover</a>
JavaScript
$(document).ready(function($) {
$(function () {
$('[title="Dismissible popover"]').popover();
});
});