I am using jquery UI datepicker to achieve custom range of Dates.
I want to remove drop down of the month and want to add Static month name In from datepicker.
var dateFormat = "mm/dd/yy",
from = $("#from")
.datepicker({
defaultDate: "+1W",
changeMonth: true,
numberOfMonths: 2,
minDate: +7
});
Change changeMonth
to false.
var dateFormat = "mm/dd/yy",
from = $("#from")
.datepicker({
defaultDate: "+1W",
changeMonth: false,
numberOfMonths: 2,
minDate: +7
});