Moment JS – check if a date is today or in the future

I am trying to use momentjs to check if a given date is today or in the future. This is what I have so far: <script type=”text/javascript” src=”http://momentjs.com/downloads/moment.min.js”></script> <script type=”text/javascript”> var SpecialToDate=”31/01/2014″; // DD/MM/YYYY var SpecialTo = moment(SpecialToDate, “DD/MM/YYYY”); if (moment().diff(SpecialTo) > 0) { alert(‘date is today or in future’); } else { alert(‘date is … Read more