Hi,
I am working with dates in an RSS feed, but am finding differing results when using the code below in IE, Chrome and Firefox:
new Date('2001-01-01T12:00:00Z')
Firefox is happy with that, but Chrome and IE return Invalid Date.
I thought I'd try replacing the T and Z as follows:
new Date('2001-01-01 12:00:00')
This time Chrome is happy with that, but Firefox and IE return Invalid Date.
Any ideas what I should do to get a date object in all browsers with this format?!
Many thanks, Tim