Reputation: 1109
I'm looking for a javascript library that's capable of parsing dates in the same way that C#'s Datetime.Parse() function does. I'm looking for something that is:
So basically I just need something that makes date parsing on the front end as trivial is it is on the backend using dot.net.
Upvotes: 1
Views: 291
Reputation: 3638
datejs is the best JS library i have ever used for date manipulation. Check date.js here . Hope it helps.
Upvotes: 1
Reputation: 2333
You could also try this one:
http://depressedpress.com/javascript-extensions/dp_dateextensions/
Good luck!
Upvotes: 0
Reputation: 140032
I don't know if it meets all of the requirements that you've listed, but a very strong contender is http://www.datejs.com/
Upvotes: 0