JSFiddle - React, Tailwind, and code Playground

by cyberjar09

HTML

<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-tab.js"></script>
<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>
<button class="btn btn-link"><i class="icon-flag" rel="tooltip" data-title="this desent work in firefox!"></i>Tooltip</button>

CSS

body {
   margin: 100px;
   font-size:20px;
}
span[rel="tooltip"] {
    background: #0088CC;
    border-radius:10px;
    color: #fff;
    font-size: 10px;
    vertical-align:top;
    font-weight:bold;
    line-height:10px;
    margin: 0 6px 0 2px;
}

JavaScript

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