I am trying to grab some data via JSONP. Using Firebug, I am able to see the data properly being returned, but I am having a hard time thinking how I have to parse it. The d
You don't have to parse the data. It is already a valid JavaScript object. For instance, to print the description property for the first object inside someFunction
function someFunction(result) {
alert(result[0].description); // alerts "Sample Description"
}