In html5 there is the excellent <date> which works on Opera (and partially on maxthon) like a charme.
but a user gets all dates, so for example in a form registration, how do i filter dates for a user that have under 18 years?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If I understand correctly, you want to only allow dates within a certain range. For this, you can specify
min="2010-01-01"to only allow dates after the 1st January, for instance. You can also specifymax=. Both must be inyyyy-mm-ddformat.