We can use simple HTML input tags to add a date picker and time picker.
datepicker
input elements with type=”date” creates datepicker input fields.
User can enter a date by just writing it down in the textbox or using a datepicker interface. You can add a range using min and max attributes to force users to select the date in that specific range. You can also add a default date using the attribute value.
Note that the user interface of datepicker will be different on different browsers. If any browser doesn’t support the datepicker then the field will be converted to an input text field.
The date picker doesn’t contain time picker in it. You will only get to select a year, a month, and a day using the date picker.
This is how to add datepicker using HTML
This is how to get datepicker value using JavaScript
We need to use ID of the datepicker element in order to get the value.
The displayed date format will differ from the actual value — the displayed date is formatted based on the locale of the user’s browser, but the parsed value is always formatted yyyy-mm-dd. – from MDN
console.log(document.getElementById("datePicker").value);
//2021-03-22
This is how to set datepicker value using JavaScript
Same way, we need to use ID of the datepicker element in order to get the value.
document.getElementById("datePicker").value = "2022-03-22";
;
console.log(document.getElementById("datePicker").value);
//2022-03-22
timepicker
input elements with type=”time” creates timepicker input fields.
User can enter a time by just writing it down in the textbox or using a timepicker interface. You can add a range using min and max attributes to force users to select the time in that specific range. You can also add a default time using the attribute value.
Note that the user interface of timepicker will be different on different browsers just as datepicker. If any browser doesn’t support the timepicker then the field will be converted to an input text field.
This is how to add timepicker using HTML
This is how to get timepicker value using JavaScript
We need to use ID of the timepicker element in order to get the value.
console.log(document.getElementById("timePicker").value);
//21:00
This is how to set timepicker value using JavaScript
Same way, we need to use ID of the timepicker element in order to get the value.
document.getElementById("timePicker").value = "09:00";
;
console.log(document.getElementById("timePicker").value);
//9:00
Credit: input date on MDN and input time on MDN
date elements getElementById time values