I am doing an Identify task and the results come back fine. I want to get a single value out of the returned results. How would I do that?
var segResult = idResult.Graphic;
alert(segResult.attributes[0]);
That got me on the right track, I also needed to change the property Graphic to feature. However, when I get my result it always says undefined. Is there away to see the raw json returned besides fiddler? I am using Visual Studio.
Is there away to see the raw json returned besides fiddler?