I get JSON back from a web service. When I use jQuery.parseJSON
, for some reason it is zero. This is a JSON example (obtained using JSON.stringify(msg)
)
{"0":{"i":"1x 8351-3 & 2 x 8352-3","D":"Notes","V":"1x 8351-3 & 2 x 8352-3"},"1":{"i":"PC3","D":"Unit","V":"PC3"},"2":{"i":"PC3","D":"Unit","De":"Unit","V":"PC3"}} var data = jQuery.parseJSON(msg);
are the data equal to zero? Am I missing something? Thanks
source share