Compare two dates with JavaScript
The Date object will do what you want – construct one for each date, then compare them using the >, <, <= or >=. The ==, !=, ===, and !== operators require you to use date.getTime() as in to be clear just checking for equality directly with the date objects won’t work I suggest you use drop-downs or some similar constrained form of date entry rather than text boxes, … Read more