Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 190 Bytes

placeholder-for-input-type-date.md

File metadata and controls

10 lines (9 loc) · 190 Bytes

Placeholder for <input type="date" />

<input
  type="text"
  placeholder="Type date"
  onfocus="this.type = 'date'"
  onblur="this.type = this.value.length ? 'date' : 'text'"
/>