JSFiddle - React, Tailwind, and code Playground
by paska
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/ui-lightness/jquery-ui.css">
<div id="dialog">Dialog</div>
<div id="content"></div>
CSS
#content {
background-color: red;
width: 1000px;
height: 1000px;
}
JavaScript
$("#dialog").dialog({
modal: true,
atuoOpen: true,
title: "Dialog",
open: function() {
$("#dialog").dialog("widget").css("position", "fixed");
}
});