JSFiddle - React, Tailwind, and code Playground

by André Albson

HTML

<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<body>
</body>

JavaScript

var img = '<div id = \"image"><img src = "http://www.google.com/intl/en_ALL/images/srpr/logo11w.png" style="width:100px;" /></div>';
var button = '<button type="button" class="btn btn-default" data-container="body" data-toggle="popover" data-placement="left" data-content="">Popover</button>';

$(button).appendTo('body');

$('button').popover({
            trigger: "hover",
            html: true,
            content: img,
            placement:'bottom'
});