i need to convert from a date in string format like this "2011-05-12 16:50:44.055" to the number of milliseconds since midnight 1 January 1970 date format in Javascript
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
To ensure correct cross-browser behaviour, I think you should parse the string yourself. I moulded this answer into:
This outputs |
|||
|
|
|
This works everywhere including Safari5 and Fx5 on OSX Without milliseconds:
WITH milliseconds in the timestamp
|
||||
|
|
|
Have you tried the |
|||
|
|
Make a Date object from the date string and use the getTime() method to get the milliseconds since 1 January 1970. http://www.w3schools.com/jsref/jsref_obj_date.asp
|
|||||
|