JSFiddle - React, Tailwind, and code Playground
by masteram
HTML
<div id="loadingsf" title="Import">
<p>Please wait ...</p>
</div>
JavaScript
function dialogsf() {
$("#loadingsf").dialog({
hide: 'slide',
show: 'slide',
autoOpen: true
});
$("#loadingsf").dialog('open').html("<p>Please Wait...</p>");
}
dialogsf();