JSFiddle - React, Tailwind, and code Playground
by Jordan Hawker
HTML
<script src="http://getbootstrap.com/dist/js/bootstrap.js"></script>
<link rel="stylesheet" href="http://getbootstrap.com/dist/css/bootstrap.css">
<a id="button" class="disabled btn btn-default">hover</a>
CSS
#button {
margin-top: 50px;
}
JavaScript
//$('button').popover({
// text:'hello',
//trigger:'click'
//});
$('#button').popover({
animation: true,
trigger: 'hover',
title: 'Disabled',
content: 'content',
placement: 'auto right'
});