JSFiddle - React, Tailwind, and code Playground

HTML

<div class="hello">
    Hello
    <span class="world ui-icon ui-icon-save"></span>
</div>

JavaScript

$('.hello').tooltip({
        content: function(callback) {
         	callback("hello guy!");   
        },
        items: '*',
        close: function( event, ui ) {$( this ).tooltip( "close" );}
    })