JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css">
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.js"></script>
<input id="age" title="We ask for your age<br/>only for<br/>statistical purposes." />
JavaScript
$('input').tooltip({
content: function() {
return $(this).attr('title');
}
});