JSFiddle - React, Tailwind, and code Playground

by jgarrido

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/ui-darkness/jquery-ui.css">
<input type="text" id="datepicker" />

JavaScript

$(document).ready( function() {
    $('#datepicker').datepicker({
        create: function(event, ui) {
            $('body').append("<p>create</p>");
        },
        beforeShow: function(event, ui) {
            $('body').append('<p>beforeShow</p>');
        }
    });
});