new Date("2012-03-09T16:03:48.16+00:00")
is NaN for IE and a date object in other browsers....
is IE returning as per standard? or other browsers are right...
whats best way to tackle this.
in w3schools I can see below
var today = new Date()
var d1 = new Date("October 13, 1975 11:13:00")
var d2 = new Date(79,5,24)
var d3 = new Date(79,5,24,11,33,0)