I have set up a jQuery UI inline datapicker and has disallowed the present and previous dates. This automatically selects tomorrow as the default date. However, I would like to not have a date selected by default. How can I accomplish this?
$("#datepicker").datepicker({
inline: true,
firstDay: 1,
minDate: 1,
defaultDate: ???,
});