JSFiddle - React, Tailwind, and code Playground
by TJ VanToll
HTML
<link href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js" ></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.9.2/jquery-ui.js" ></script>
<input id="input1" title="This is the inital value." />
JavaScript
$('input')
.tooltip()
.on('keyup', function() {
$(this).tooltip('option', 'content', 'This is a different value.');
});