JSFiddle - React, Tailwind, and code Playground
by hulya
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/themes/base/jquery-ui.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js" type = "text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js" type = "text/javascript"></script>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel = "Stylesheet" type="text/css" />
<input type = "text" id = "txtDate" />
JavaScript
$(function () {
$("#txtDate").datepicker({
changeMonth: false,
changeYear: true,
minDate: new Date(2010,10,8),
yearRange: '2010:' + new Date().getFullYear().toString()
});
});