css - HTML: Show placeholder first in input type date -
is possible me show placeholder in input first? right now, can see placeholder when click on input box, want when load page, placeholder can read instantly.
rather mm/dd/yyyy, should show birth date when page loaded1
thank you!
<input placeholder="your date" type="text" onfocus="(this.type='date')" onblur="(this.type='text')" id="date">
read page
Comments
Post a Comment