JSFiddle - React, Tailwind, and code Playground
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 id="left">
<div id="datepicker"></div>
</div>
CSS
.ui-datepicker-year
{
display:none;
}
JavaScript
$(function() {
$( "#datepicker" ).kendoDatePicker({
changeMonth: true,
changeYear: false
});
});