JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/jquery-ui.min.js"></script>
<link rel="stylesheet" href="http://jqueryui.com/themes/base/jquery.ui.all.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<link rel="stylesheet" href="http://jqueryui.com/demos.css">
<label>1: <input class="cdate" /></label>
<label>2: <input class="cdate" /></label>
<label>3: <input class="cdate" /></label>
JavaScript
$(function() {
var dates = $(".cdate").datepicker({
dateFormat: 'mm-y'
});
});