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.

I'm having an issue using the new Date() function in Javascript. Safari is giving me an "Invalid Date" message.

I've created a short example at jsbin.

This appears to work on all other browsers, but not Safari. Any ideas on how I can take the value from an input (such as 2011-01-03) and turn it into a date object, while having it work properly in Safari?

Many thanks!

share|improve this question

3 Answers

up vote 21 down vote accepted

The date parsing behavior on JavaScript is implementation-dependent, the ISO8601 format was recently added to the ECMAScript 5th Edition Specification, but this is not yet supported by all implementations.

I would recommend you to parse it manually, for example:

function parseDate(input) {
  var parts = input.match(/(\d+)/g);
  return new Date(parts[0], parts[1]-1, parts[2]);
}

parseDate('2011-01-03'); // Mon Jan 03 2011 00:00:00

Basically the above function matches each date part and uses the Date constructor, to build a date object, note that the months argument needs to be 0-based (0=Jan, 1=Feb,...11=Dec).

share|improve this answer
This did it. Thanks for the clarification. – Dodinas Jan 7 '11 at 8:01

While @CMS's solution is probably superior, I found that using Date.parse('2011-01-13') is also a quick, working solution.

share|improve this answer
2  
That doesn't seem to work in Safari (5.1.3), I'm just getting NaN as the return value. – Elliot Winkler Feb 28 '12 at 22:59
Right. Date.parse seems to be implementation specific. – n0nick Mar 13 '12 at 14:48

csnover has some progressive ISO 8601 Date enhancement code available on GitHub: https://github.com/csnover/js-iso8601/blob/master/iso8601.js

Including his code should provide a temporary fix while the Safari team work toward a more complete ES5 implementation.

share|improve this answer
This code does not work on Safari – jasdeepkhalsa Jan 15 at 11:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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