We have that simple date input :
<input type="date" id="inp_DateDep" />
When the input is clicked, we want the default month displayed to be august.
I could set the minimal value to the first day of the month like so :
<input type="date" id="inp_DateDep" min="2023-08-01" />
But if I do so, then the user won't be able to select a date before the first day of august. In some rare case they will need to select a date in july... but it will more often be august.
In short, is there a way to choose what default month will be displayed in a type="date"
input without setting a default value nor using the min
attribute ?