JSFiddle - React, Tailwind, and code Playground
by sarahu
HTML
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<p>
<label for="age">Your age:</label>
<input id="age" title="We ask for your age only for statistical purposes." />
</p>
JavaScript
$.widget('custom.myTooltip', $.ui.tooltip, {
_create: function () {
this._superApply();
},
});
$(document).myTooltip();