JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://jquery-ui.googlecode.com/svn/tags/1.8.5/themes/base/"></script>
<link rel="stylesheet" href="http://jquery-ui.googlecode.com/svn/tags/1.8.5/themes/base/jquery-ui.css">
<div id="dialog">
<div id="body">I'm a dialog</div>
</div>
JavaScript
$('#dialog').dialog(
"resize", "auto"
);
$('#dialog').dialog();
setTimeout(function() {
$('#body').append("Hello!<br>");
setTimeout(arguments.callee, 1000);
}, 1000)