I have two calendars on an HTML page defined as:
<p>Calendar 1:
<input type="text" id="datepicker1" />
</p>
<p>Calendar 2:
<input type="text" id="datepicker2" />
</p>
I want to disable all Sundays, Mondays and Tuesdays on Calendar 1 and I also want to set the minDate of that calendar to tomorrow.
I also want to make it so that Calendar 2's maxDate should be the date selected in Calendar 1.