JSFiddle - React, Tailwind, and code Playground

by scruffles

HTML

<script src="http://getbootstrap.com/dist/js/bootstrap.js"></script>
<link rel="stylesheet" href="http://getbootstrap.com/dist/css/bootstrap.css">
<button type="button" class="btn btn-default">hover</button>

JavaScript

//$('button').popover({
  //  text:'hello',
    //trigger:'click'
//});
 
     
$('button').popover({
    trigger: 'hover',
    title: 'title',
    content: 'conent'
});