$("#dateId").datepicker({
defaultDate: '03/28/2020'
});
You can also set a date in the Jquery UI date picker by using "setDate". Below is the example
$("#dateId").datepicker("setDate", "03/28/2020");
Always remember to pass the date in the exact format that you are using
0 Comments