JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<a href="#" data-toggle="tooltip"
data-original-title="<input type='text' class='span1' />
<input type='button' class='btn' value='Save' />">Enter your name!</a>
CSS
body {padding: 150px;}
input {margin: 0 !important;}
JavaScript
$(document).ready(function(){
$("a").tooltip();
$("a").tooltip("show");
});