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

how simulate placeholder functionality on input date field?


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -