Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Compare 2 dates with JavaScript
Compare two dates in JavaScript

I am new to jQuery and I want to compare two dates,

e.g. var date1 = '2011-01-12'; var date2 = '2011-01-15';

I tried but could't find a solution.

share|improve this question
This has already been answered here: stackoverflow.com/questions/658522/… – cjaredrun Jan 23 '12 at 10:23
Variables in your example are not really dates, but strings with formatted dates within. You can theoretically compare them using string comparison if the date format (Year first, then month, then day) will not change. – DRCB Jan 23 '12 at 10:27

marked as duplicate by lucapette, Andy E, Samich, Matt, James Allardice Jan 23 '12 at 10:24

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 0 down vote accepted

Because you've got the dates in a YYYY-MM-DD format, you can simply do string comparison;

if (date1 < date2) //
else if (date1 == date2) //

Aside from that, see the dupes.

share|improve this answer
1  
Thanks its works. very simple solution. – user1073328 Jan 23 '12 at 10:39

Not the answer you're looking for? Browse other questions tagged or ask your own question.