I have a HTML page with 3 dropdowns for the month, day and year and I was wondering if there was a way to populate the month drop down properly depending on the month and year.

I haven't done this before on the client side, but it looks like a lot of controls like the jQuery DatePicker are doing that behind the scenes.

Thanks!

link|improve this question

1  
Possible duplicate: Repopulating dates on select boxes – Box9 Feb 3 '11 at 1:50
Thanks Box9! That is actually what I was looking for. – Abe Feb 3 '11 at 1:54
feedback

3 Answers

up vote 2 down vote accepted

You can play with date objects:

var monthStart = new Date(year, month, 1);
var monthEnd = new Date(year, month + 1, 1);
var monthLength = (monthEnd - monthStart) / (1000 * 60 * 60 * 24)

Arithmetic with Date objects gives a number of milliseconds.

This will even work for December; the Date constructor handles out-of-range arguments by wrapping around.

Note that month is zero-based (it must be between 0 and 11)

link|improve this answer
This is awesome.. it even works on leap years. I tried 2/2012. thanks! – Abe Feb 3 '11 at 2:13
2  
I wrapped it as var DaysInMonth = function(year, month) { /* SLAK's code here */; return monthLength;}; and further added a prototype method to Date Date.prototype.daysInMonth = function() { var mlen=DaysInMonth(this.getFullYear(), this.getMonth()); return mlen; }; so I can call (new DateTime(2000, 1)).daysInMonth(); – John K Feb 3 '11 at 2:56
feedback

As far as I know, there's no (neat) built-in function for that. I wrote this once:

// note that month is 0-based, like in the Date object. Adjust if necessary.
function getNumberOfDays(year, month) {
    var isLeap = ((year % 4) == 0 && ((year % 100) != 0 || (year % 400) == 0));
    return [31, (isLeap ? 29 : 28), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31][month];
}
link|improve this answer
That is cool how you can include a ternary statement inside the array! nice! – Abe Feb 3 '11 at 1:53
feedback
Date.prototype.daysinMonth: function(){
    var d= new Date(this.getFullYear(), this.getMonth()+1, 0);
    return d.getDate();
}

function daysinMonthfromInput(month,year){
    return (new Date(year,month-1,1)).daysinMonth();
}

alert(daysinMonthfromInput(2,2011));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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