JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js"></script>
<a href="#" title="Link Detail in Tooltip">Click me to see Tooltip</a>
JavaScript
$('a').tooltip({
show:"slideDown",
track: false
});
$('a').on('click', function () {
$(this).tooltip('enable').tooltip('open');
});