JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css">
<button id="mybtn" title="Hello, I am a tooltip!">Hello, I am a button!</button>
JavaScript
$(document).tooltip();
$("#mybtn").hover(function(){
setTimeout(function(){
$("#mybtn").prop("disabled", true);
}, 250);
});