Javascript Check If Date Is A Weekend - Recognize and honor achievements with our Javascript Check If Date Is A Weekend. Inspire and encourage with personalized certificates.
moment.js is just a library to manage dates, what you need is an algorithm to find if one of the dates is weekend or weekday. So what you can do is get the day number from the date (0-6) where 0 is sunday. Let's say. var date = moment ("2015-07-02"); var dow = date.day (); And about holidays or not or not, that's simple also, you need to get an ... Possible Duplicate: how to determine if date is weekend in javascript I'm tryng to do something for checkinf onload if date is a weekend or not, I wtitten this code.