•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the JavaScript / DHTML / AJAX section within the Web Development category of DaniWeb, a massive community of 402,503 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,746 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our JavaScript / DHTML / AJAX advertiser: Lunarpages Web Hosting
I browsed google and found nothing so thought i would put my efforts up here.
hope this all helps.
this function will allow you to return the number of days between two dates minus saturdays and sundays. (including the start date)
hope this all helps.
this function will allow you to return the number of days between two dates minus saturdays and sundays. (including the start date)
Last edited : Dec 11th, 2007.
// ########## startMonth and endMonth both start at 0 i.e 0 = january, 1 = feb etc function getDaysMinusWeekend(startDay, startMonth, startYear, endDay, endMonth, endYear) { var sdate = new Date(); var edate = new Date(); var odays = 0; var total = 0; sdate.setFullYear(startYear,startMonth,startDay); edate.setFullYear(endYear,endMonth,endDay); odays = 6 - sdate.getDay(); if(odays == 6) { odays = 0; } sdate.setFullYear(startYear,startMonth,startDay + odays); return Math.floor(((((edate.getTime() - sdate.getTime()) / 1000 / 60 / 60 / 24) / 7) * 5) + odays); }
Post Comment
•
•
•
•
DaniWeb Marketplace (Sponsored Links)