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

that gives to user the possibilte to insert just nembers and it gives him that form
(___/.___/._________)
i want to create a input form for date like this (exemple )

that gives to user the possibilte to insert just nembers and it gives him that form
(___/.___/._________)
You can use JQuery like this:
<input id="date" type="text"></input>
$("#date").mask("99/99/9999");
Look at this