JSFiddle - React, Tailwind, and code Playground

by Joe

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css">
<input id="datepicker1">

CSS

body {
    font: 12px sans-serif;
}

.ui-widget-header{
      /* border: 1px solid #aaaaaa; */
    /* background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x; */
    /* color: #222222; */
    font-weight: bold;
}

JavaScript

$(function() {
    $("#datepicker1").datepicker({
        dateFormat: "dd/mm/yy"
    }).datepicker("setDate", "0");
});