How can I get the code below to work when I have a month of february? Currently it is getting to the day and then stopping before getting to the if to determine whether it is a leap year.

 if (month == 2) {
    if (day == 29) {
        if (year % 4 != 0 || year % 100 == 0 && year % 400 != 0) {
            field.focus();
             field.value = month +'/' +  '';
        }
    }
    else if (day > 28) {
        field.focus();
             field.value = month +'/' +  '';
    }
}
link|improve this question

36% accept rate
"Stopping" how? Is there an error? – Pekka Nov 17 '11 at 22:52
it never evaluates the year to see if it is a leap year it goes straight to the field.focus and field.value whether it is a leap year or not – Juan Almonte Nov 17 '11 at 23:03
Your conditions look a little odd - as they're currently written now, you only check day for values of 29 or greater (based on the day == 29 and day > 28 if clauses). I'm assuming that you meant to write day <= 28, but if that's the case, you could drop the second else if clause and use an else clause directly. It might also be safer to add an additional set of parenthesis to your leap year clause: if (year % 4 != 0 || (year % 100 == 0 && year % 400 != 0)) – JW8 Nov 17 '11 at 23:13
You might need to show some of the surrounding code for how those variables are being set. If you're using a Date object at all remember that it uses zero-based months. – nnnnnn Nov 18 '11 at 1:00
feedback

1 Answer

It's safer to use Date objects for datetime stuff, e.g.

isLeap = new Date(year, 1, 29).getMonth() == 1
link|improve this answer
1  
Holy cow. What a hack. :) – Šime Vidas Nov 17 '11 at 23:41
Live demo: jsfiddle.net/bJ4cH – Šime Vidas Nov 17 '11 at 23:47
feedback

Your Answer

 
or
required, but never shown

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