Trent
Trent

Reputation: 1109

Parsing dates in Javascript

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

Answers (3)

Bala
Bala

Reputation: 3638

datejs is the best JS library i have ever used for date manipulation. Check date.js here . Hope it helps.

Upvotes: 1

Rob Angelier
Rob Angelier

Reputation: 2333

You could also try this one:

http://depressedpress.com/javascript-extensions/dp_dateextensions/

Good luck!

Upvotes: 0

Ateş Göral
Ateş Göral

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

Related Questions