JSFiddle - React, Tailwind, and code Playground

by ThiefMaster

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/themes/redmond/jquery-ui.css">
<div id="main">
<button>test</button>
</div>

CSS

div#main {
    height: 300px;
    width: 100%;
    padding: 1em;
    background: #000;
}

JavaScript

$('button').click(function() {
     $(this).datepicker('dialog', new Date());   
});