JSFiddle - React, Tailwind, and code Playground
by salman
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;
}
JavaScript
$(function() {
$("#datepicker1").datepicker({
dateFormat: "yy-mm-dd"
}).datepicker("setDate", "0");
});