JSFiddle - React, Tailwind, and code Playground

by japaneselanguagefriend

HTML

<link rel="stylesheet" href="http://dev.derekmccrone.com/sc2stats/assets/css/bootstrap.css">
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-tooltip.js"></script>
<script src="https://github.com/twitter/bootstrap/raw/master/js/bootstrap-popover.js"></script>
<a href="#" rel="popover" title="A title">hover for popover</a>

CSS

html{
 text-align:center;   
}

JavaScript

$(function() {
    $('a[rel=popover]').popover({placement:'left'});
});