The default HTML input (code below) with type=date will display a date picker input.
However the date picker dialog only opens when you click on the calendar icon at the far right of the input.
If you click anywhere else in the input the dialog DOES NOT open.
How can you enable the input to open the date picker dialog when you click anywhere inside the input?
Note: I have already searched similar problems on Stack overflow for answers and on the internet but I did not get a proper solution.
<label for="session-date">Start date:</label>
<input type="date" id="session-date" name="session-date">