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

I need to calculate if someone is over 18 from their date of birth using JQuery.

var curr = new Date();
curr.setFullYear(curr.getFullYear() - 18);

var dob = Date.parse($(this).text());

if((curr-dob)<0)
{
    $(this).text("Under 18");
}
else
{
    $(this).text(" Over 18");
}

There must be some easier functions to use to compare dates rather than using the setFullYear and getFullYear methods.

Note: My actual reason for wanting to find a new method is length of the code. I have to fit this code into a database field that is limited to 250 chars. Changing the database is not something that can happen quickly or easily.

share|improve this question
Why isn't your DateTime field in DB just take in the current date and you calculate the age in your code. – TStamper Mar 18 '09 at 14:50
This is a hack to show age in the GUI without any changes to any code or database. I will do it correctly when a release can be planned in. – Robin Day Mar 18 '09 at 14:59

6 Answers

up vote 15 down vote accepted

You might find the open source Datejs library to be helpful. Specifically the the addYears function.

var dob = Date.parse($(this).text());
if (dob.addYears(18) < Date.today())
{
    $(this).text("Under 18");
}
else
{
    $(this).text(" Over 18");
}

In a more terse fashion:

$(this).text(
    Date.parse($(this).text()).addYears(18) < Date.today() ?
    "Under 18" :
    " Over 18"
)
share|improve this answer
+1 - seems much easier to ready that others. I'm using this library and its been a big help. – RSolberg Mar 18 '09 at 15:23
1  
Shouldn't the less than operator here be more than? – tamewhale Mar 28 '11 at 13:35
Date.prototype.age=function(at){
    var value = new Date(this.getTime());
    var age = at.getFullYear() - value.getFullYear();
    value = value.setFullYear(at.getFullYear());
    if (at < value) --age;
    return age;
};

var dob = new Date(Date.parse($(this).text()));

if(dob.age(new Date()) < 18)
{
    $(this).text("Under 18");
}
else
{
    $(this).text(" Over 18");
}
share|improve this answer
1  
+1 Great answer, used it answering this question stackoverflow.com/questions/7210887/… – Robin van der Knaap Aug 27 '11 at 12:59

You can remove the separate variable for DOB and collapse the if statement. The below code comes in at 165 characters:

var check = new Date();
check.setFullYear(check.getFullYear() - 18);
$(this).text((new Date("3/6/2009").getTime() - check.getTime() < 0)?"Under 18":"Over 18");

This will still keep the logic needed to deal with leap-years.

share|improve this answer
$(this).text(((new Date().getFullYear()-Date.parts($(this).text()))>=18)?"Over 18":"Under 18");

Better? :D

share|improve this answer
This only seems to use the year field for calculation, won't take into account months/days of current date and the DOB. So with this someone born in Dec 1991 would come back as over 18 in Jan 2009, which isn't true (they'd be 18 in Dec 2009). – Parrots Mar 18 '09 at 15:04
yes... it won't take into effect the months and days.. using a library would be useful if you want the full functionality, like in the first answer. Still can be built, though it might be difficult inside of 250 characters. – Sudhir Jonathan Mar 22 '09 at 16:42

You could use the Date object. This will return the milliseconds between the two dates. There are 31556952000 milliseconds in a year.

function dateDiff(var now, var dob)
{
    return now.getTime() - dob.getTime();
}
share|improve this answer
Surely there aren't that many milliseconds every year. Dates are hard. – Garry Shutler Mar 18 '09 at 14:55
that is not always true (leap years) – Jon Erickson Mar 18 '09 at 16:49

My solution.

var startDt=document.getElementById("startDateId").value;
var endDt=document.getElementById("endDateId").value;
if( (new Date(startDt).getTime() > new Date(endDt).getTime()))
{
    ----------------------------------  
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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