Showing posts with label last date. Show all posts
Showing posts with label last date. Show all posts

Friday 11 July 2014

How to find last day of month in jquery datetime picker?

function getLastDayOfYearAndMonth(year, month){
    return(new Date((new Date(year, month + 1, 1)) - 1)).getDate();
}