JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://raw.github.com/twitter/bootstrap/master/js/bootstrap-tooltip.js"></script>
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<p>
    <a href="#" rel="tooltip" data-placement="right" title="You have 1 notification">
        <span class="badge badge-important">1</span>
    </a>
</p>

CSS

body {
    padding: 20px;
}

JavaScript

$('[rel="tooltip"]').tooltip();