I have a string I need converted into a date:
2010-10-14T09:00:00.0000000
In FF and Crome I can do var date = new Date("2010-10-14T09:00:00.0000000")
and everything works. That code in IE, Safari and Opera gives be a NaN. How can I get that string into a date in a x-browser manner, preferably without manually parsing the string into its individual parts.
I need both the date and time parts to be converted...