Can someone please tell me the correct way to change the following:
$("#datepicker01").datepicker({
numberOfMonths: 2,
minDate: dd,
maxDate: '+1M +31D',
hideIfNoPrevNext: true,
altField: 'input#chooseDate01',
altFormat: 'DD, d MM yy',
beforeShowDay: noWeekendsOrHolidays
});
I need to add 5 more to the altField element, that is, "input # chooseDate02", etc. It is as simple as:
altField: 'input#chooseDate01' 'input#chooseDate02', and so on.
Thank.
source
share