I have a non-nullable date field which I present in the following HTML element:
<input type="date" value="(enter date value here)"/>
By default there will always be a date in this field. However, iOS's native datepicker comes with the ability to clear the date.
There's code to validate on both the client and server that this field cannot be empty. Still, I'd rather not have this button shown at all to the user.
Is there a way I can hide it, using a special attribute or something? I don't care if the solution is targetted at iOS's Safari only.