i tried to disable months using jquery.mtz.monthpicker.js, but it disables specific months for all years, i want to disbale months of specific year.
My Code::
function Disablemonth() {
$("#monthpick").monthpicker({
pattern: 'mm.yyyy'
});
$("monthpick").monthpicker('disableMonths', [06, 08, 11, 3]);
}