The name is pretty clear, I think?
Here is my date entry:
<input type="date" id="birthdate" name="birthdate" value="" max="1993-12-07" required/>
In chrome, I cannot enter a date other than 1993-12-07 using the small arrows of the field (but if I write the date myself, I can).
In iOS Safari, focusing on this field simply brings a good date picker. However, this date parameter is not limited to the max attribute. So how can I do this? Of course, I have a server side check, but I want to do it on the client side as well. Any ideas? Thanks!
source share