JSFiddle - React, Tailwind, and code Playground

by darkajax

HTML

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

CSS

.ui-datepicker-trigger {
    cursor: pointer;       
}
#ui-datepicker-div { display: none; }

JavaScript

$( "#datepicker" ).datepicker({
        changeMonth: true,
        changeYear: true,
        yearRange:"-90:+0",
        showOn: "both",
        buttonImage: "http://jqueryui.com/demos/datepicker/images/calendar.gif", //my gif is here
        buttonImageOnly: true
    });