Hello I have the following JSON returned from my server side:
{"command":"SELECT","rowCount":1,"oid":null,"rows":[{"username":"xxxx"}],"fields":[{"name":"username","tableID":34722,"columnID":3,"dataTypeID":1043,"dataTypeSize":-1,"dataTypeModifier":204,"format":"text"}],"_parsers":[null]}
I'm parsing that json in javascript like this :
var ParsedJSONResponse = $.parseJSON(JSONResponseFromServerSide);
The variable is "ParsedJSONResponse" always null, my JSON is valid I checked it in JSONLint so what is going on please?
contentType:JSONthat jQuery will parse it for you and ultimately return a a JSON object.