When I create a date field, something like this:
<input type="date" ... > Chrome shows the date entry format дд.мм.гггг . How can it be removed?
Chrome shows the da...">
When I create a date field, something like this:
<input type="date" ... > Chrome shows the date entry format дд.мм.гггг . How can it be removed?
<input name="date" type="text" onfocus="(this.type='date')" onblur="if(!this.value)this.type='text'"> Source: https://ru.stackoverflow.com/questions/572050/
All Articles
<input type="date" placeholder=" ">does not work. Chrome in general doesn’t deal with a placeholder. - Skotinin