I'm trying to find a date-string format that will allow me to use Date.parse to get a valid date. (I'm using a third party javascript library that is using Date.parse)
I've tried using an ISO formated date string like
Date.parse("2011-05-06T17:22:11.234");
but IE Quirks mode returns NaN.
The following works in Quirks mode, but not in FireFox:
Date.parse("2011/05/06T17:22");
Any suggestions?
