I have a time stamp in ISO 8601 I pass it to Date
JavaScript object as a string and JavaScript instantiate an object from it that holds the specified date and time. Example:
var datetime = new Date('2013-07-18T19:17:09+03:00');
This works on Google Chrome and I wonder if it will on most major browsers? If not what is the most compatible JavaScript time-format for Date object? Thanks