Добавить заполнителя в дату ввода типа
<input type="text" placeholder="Date of birth" onfocus="(this.type='date')">
Lokesh003Coding
<input type="text" placeholder="Date of birth" onfocus="(this.type='date')">
<input type="text" placeholder="MM/DD/YYYY" onfocus="(this.type='date')" onblur="(this.type='text')">
<input type="text" placeholder="Birth Date" onfocus="(this.type='date')" onblur="if(this.value==''){this.type='text'}">
<input placeholder="Date" class="textbox-n" type="text" onfocus="(this.type='date')" id="date">