JSFiddle - React, Tailwind, and code Playground

by svineet

HTML

<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">
<div id="modal" title="My dialog">
  <p>Some random text.</p>
</div>

JavaScript

$(function() {
        $( "#modal" ).dialog();
});