I have a json file with contents like this:
{ \"aaa\":{ \"status\":\"available\", \"classkey\":\"dotnet\" }, \"bbb\":{
Maybe this can solve your problem.
Using jQuery you can convert your JSon to Array and access it by index.
var data = $.parseJSON(msg.d ? msg.d : msg); alert(data[1].status)