I want a jQuery 3 months calendar to be shown on the page. User will select some date and click on a button to view the schedules.
I tried with below jQuery code
<input type="text" id="dp-text-box" />
$("#dp-text-box").datepicker({
numberOfMonths: 3,
dateFormat:'yy/mm/dd'
});
However it will show the textbox and user has to click to open datepicker.
But in my case i should show the datepicker default and allow the user to navigate.
Please find the attached image that i need.