JSFiddle - React, Tailwind, and code Playground

by John Doe

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/ui-lightness/jquery-ui.css">
<a href="#" id="reg_link">Sign-Up!</a>
<div id="register"></div>

JavaScript

$(document).ready(function() { 
     var dlg=$('#register').dialog({
         title: 'Register for LifeStor',
         resizable: true,
         autoOpen:false,
         modal: true,
         hide: 'fade',
         open: function() {
            			$(this).load("https://www.w3.org/TR/PNG/iso_8859-1.txt")},
         width:350,
         height:275
      });
      
    
      $('#reg_link').click(function(e) {
          dlg.html('Page loaded');
          e.preventDefault();
          dlg.dialog('open');
      }); 
});