1

i want to create a input form for date like this (exemple )

enter image description here

that gives to user the possibilte to insert just nembers and it gives him that form

(___/.___/._________)
doniyor
  • 36,596
  • 57
  • 175
  • 260
user3756817
  • 324
  • 1
  • 5
  • 12

1 Answers1

0

You can use JQuery like this:

<input id="date" type="text"></input>

$("#date").mask("99/99/9999");

Look at this

Typo
  • 1,875
  • 1
  • 19
  • 32