JSFiddle - React, Tailwind, and code Playground

by gurkavcu

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/sunny/jquery-ui.css" type="text/css" />


<div class="demo">
    
    <p>Date: <input id="datepicker" type="text"></p>
    
</div>

JavaScript

$(document).ready(function() {


        $.datepicker.formatDate('yy-mm-dd', "datepicker");
 


});