JSFiddle - React, Tailwind, and code Playground
by agorur
HTML
<section>
<div class="well">
<a href="#" id="example" class="btn btn-danger" rel="popover" data-content="It's so simple to create a tooltop for my website!" data-original-title="Twitter Bootstrap Popover">hover for popover</a>
</div>
</section>
JavaScript
$(document).ready(function() {
$("#example").popover({ title: 'Twitter Bootstrap Popover', content: "It's so simple to create a tooltop for my website!" });
});