How can a user enter an input date of type empty?

I want to use the new input attribute from HTML5 DATE, there is only one problem, in the project logic, the user must have a choice to delete the value, but I do not see how to set an empty value on these inputs

+4
date input html5
source share
3 answers

Assuming you want to display the dd/mm/yyyy value, then click the Clear button.

enter image description here

+3
source share

In HTML5 on Chrome, the date picker has a clear button at the bottom (next to today)

 <input type="date" value=""> 
+2
source share

<input type="date" name="NameItAnythingYouWant" value="">

0
source share

All Articles