Answers for "placeholder date input"

6

add placeholder in input type date

<input type="text" placeholder="Date of birth" onfocus="(this.type='date')">
Posted by: Guest on October-09-2020
0

html date placeholder

<input placeholder="Date" class="textbox-n" type="text" onfocus="(this.type='date')" id="date">
Posted by: Guest on October-02-2020
2

add custom placeholder in input type date

<input type="text" placeholder="Birth Date" onfocus="(this.type='date')" onblur="if(this.value==''){this.type='text'}">
Posted by: Guest on November-20-2020

Browse Popular Code Answers by Language