JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.14.0/jquery.validate.js"></script>
<p>Date: <input type="text" id="datepicker"></p>
    <label id="display_error" class="display_error"></label>

CSS

.display_error{
    display:none;
}

JavaScript

$(function() {
    	$( "#datepicker" ).datepicker({
              changeMonth: true,
              changeYear: true,
            yearRange: '115:+1M'
        }).on('change',function(){
            alert("check");
        });
  });