My JSON string contains a date field that returns such a value:
\"2009-04-04T22:55:16.0000000-04:00\"
I am particularly interested in parsi
Extending the jQuery.ajax converters setting worked fine for me from its's default:
"text json": jQuery.parseJSON
to
"text json": function (xmlValue) { var value = JSON.parse(xmlValue, Site.dateReviver); return value; }