JSFiddle - React, Tailwind, and code Playground

by TJ VanToll

HTML

<link href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>

<div style="height:800px; background-color:#666"> </div>
<div style="height:800px; background-color:#333"> </div>
<button>Launch</button>

JavaScript

$( "button" ).on( "click", function() {
    $( "<div><p>Test Dialogue</p></div>" ).dialog();
});