$("#monthDate").datepicker({
dateFormat: 'yy.mm',
changeMonth: true,
changeYear: true,
showButtonPanel: true,
onClose: function(dateText, inst) {
var month = $("#ui-datepicker-div .ui-datepicker-month :selected").val();
var year = $("#ui-datepicker-div .ui-datepicker-year :selected").val();
$(this).datepicker('setDate', new Date(year, month, 1));
$(".ui-datepicker-calendar").css("display","none");
}
});
$("#monthDate").focus(function () {
$(".ui-datepicker-calendar").css("display","none");
$("#ui-datepicker-div").position({
my: "center top",
at: "center bottom",
of: $(this)
});
});
RECENT COMMENT