Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Looking for a mask where I can enter dd/mm/yyyy (with a limit of 31 for dd, 12 for mm) I tried several but possible to enter 24/24/2024

Thanks,

share|improve this question
Do you mean something like a regular expression that checks for correct format? – Guidhouse May 16 '11 at 10:58

closed as not constructive by Kev Jun 5 '12 at 22:41

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

I use masked-input-plugin and handle validation separately with the rest of the form.

share|improve this answer

Try the jQuery Date Entry

A jQuery plugin that sets an input field up to accept a date value using a spinner.

enter image description here

Description from jQuery Plugin page:

  • Can be driven via the keyboard or with the mouse.
  • Accepts direct date entry via the keyboard.
  • Allow various date formats including day and/or month names.
  • Can restrict to a minimum and/or maximum date.
  • Localisations available.
share|improve this answer

You could try this one: http://webdeveloperplus.com/jquery/how-to-mask-input-with-jquery/

share|improve this answer
It's the one I tried where you can enter 24/24/2024 – Kris-I May 16 '11 at 11:14

Try using jQuery .datepicker():

http://jqueryui.com/demos/datepicker/

share|improve this answer
I know that, the customer want a mask not a calendar appear, a mask like this /__/__ – Kris-I May 16 '11 at 10:55

Not the answer you're looking for? Browse other questions tagged or ask your own question.