JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/1.3.0/bootstrap.min.css">
<script src="http://twitter.github.com/bootstrap/1.3.0/bootstrap-twipsy.js"></script>
<a href="#test" title="foo text">click me</a>

JavaScript

$(document).ready(function () {
    $('a').twipsy({placement: 'below'})
        .click(function (event) {
            event.preventDefault();
            $(this).remove();
             $('.twipsy').remove()
        });
});