JSFiddle - React, Tailwind, and code Playground

by Michele Marcucci

HTML

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<td>
        <div>
                <span class="btn" id="infoItem" data-toggle="popover" rel="popover">
                     Hello world
                </span>
            </div>
    </td>

JavaScript

$(document).ready(function() {
    $('[data-toggle="popover"]').popover({
        html: true,
        animation: false,
        content: 'World',
        placement: "bottom"
    });
});