JSFiddle - React, Tailwind, and code Playground

by nickadeemus2002

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/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

var iconURL = "http://jqueryui.com/demos/"+
              "datepicker/images/calendar.gif";        


$( "#datepicker" ).datepicker({
            showOn: "button",
            buttonImage:iconURL,
            buttonImageOnly: true
 });