JSFiddle - React, Tailwind, and code Playground
by nickadeemus2002
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/themes/base/jquery-ui.css">
<link rel="stylesheet" href="http://static.jquery.com/ui/css/demo-docs-theme/ui.theme.css">
<div class="demo">
<p>Date: <input type="text" id="datepicker"></p>
</div><!-- End demo -->
JavaScript
$(function() {
$( "#datepicker" ).datepicker({
showOn: "button",
buttonImage:"http://jqueryui.com/demos/datepicker/images/calendar.gif",
buttonImageOnly: true
});
});