I have a datetime string being provided to me in the following format:
yyyy-MM-dd HH:mm:ss
2011-07-14 11:23:00
When attempting to parse it into a javascript date() object it fails. What is the best way to convert this into a format that javascript can understand?
Edit: The answers below suggest something like
var myDate = new Date('2011-07-14 11:23:00');
Which is what I was using. It appears this may be a browser issue. I've made a http://jsfiddle.net/czeBu/ for this. It works ok for me in chrome. In FF 5.0.1 on OS X it returns Invalid Date
