Using JQuery, I want to load startDate in DatePicker.
$('#myId').datepicker({ minDate: '-100D', maxDate: '+145D', startDate: new Date(2011,0,4) });
where myId is an input field. MinDate, maxDate both are working fine but startDate is not working. Currently, it is showing today's date.