JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.jquery.com/ui/1.9.0/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.0/themes/base/jquery-ui.css">
<input type="text" title="my input" />

JavaScript

$(function () {
    $("input:text").tooltip({
        disabled: true
    }).on("focusin", function () {
        $(this)
            .tooltip("enable")
            .tooltip("open");
    }).on("focusout", function () {
        $(this)
            .tooltip("close")
            .tooltip("disable");
    });

});