JSFiddle - React, Tailwind, and code Playground
by Guddu Kumar
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/ui-lightness/jquery-ui.css">
<div id="dialog" title="Basic dialog">
<p>Dialog box</p>
<input/>
</div type="text">
<a href="#" class="button">The button</a>
JavaScript
$("#dialog").dialog({ autoOpen: false });
$('.button').click(function() {
$('#dialog').dialog('open');
});