JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js"></script>
<a class="foo" href="#">Click Me</a>

<a class="foo" href="#">Click Me</a>

JavaScript

$('a.foo').popover({
    html: true,
    title: 'Hello',
    placement: 'bottom',
    content: '<button class="btn btn-default" id="click-me">Click Me!</button>'
}).parent().on('click', '#click-me', function() {
    alert("click!");
});