JSFiddle - React, Tailwind, and code Playground

by nsshrinivasan

HTML

<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script src="http://jqueryui.com/resources/demos/datepicker/images/calendar.gif"></script>
<p>Date: <input type="text" id="datepicker" /></p>

JavaScript

$(function() {
    $( "#datepicker" ).datepicker({
      showOn: "button",
      buttonImage: "http://jqueryui.com/resources/demos/datepicker/images/calendar.gif",
      buttonImageOnly: true
    });
  });