JSFiddle - React, Tailwind, and code Playground

by nosfan1019

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-tooltip.js"></script>
<div>
<span>hello my <a href="#" class='boob' data-content='asdf'>name</a> is Ryan.</span>
<a href="#" class='next'>next</a>
</div>

CSS

body {
    margin: 50px;
}
.popover-title {
    display: none;
}
.popover-content {
    background-color:red;
    padding: 3px 14px;
    color: white;
}
.popover-inner {
    width: auto;
}

JavaScript

$('a.boob').clickover({
    placement: 'bottom'
});