JSFiddle - React, Tailwind, and code Playground

by dhavaljani

HTML

<p>Date: <input type="text" id="datepicker" readonly/></p>

JavaScript

$(function() {
    $( "#datepicker" ).datepicker({
      showOn: "button",
      buttonImage: "http://devnet.logixml.com/SampleTemplateModifiers/rdTemplate/rdCalendar/rdDatePicker.gif",
      buttonImageOnly: true
    });
  });