JSFiddle - React, Tailwind, and code Playground

by nikhilpatil

HTML

<script src="http://code.jquery.com/ui/1.8.17/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.8.17/themes/smoothness/jquery-ui.css">
<div id="dialog" title="My Dialog">
    This should have had some meaningful text. Alas!
</div>

JavaScript

$(function(){
    $('#dialog').dialog({
        modal:true
    });
})