Currently, I am in the process of learning JSON.
$.ajax({
async: true,
type: "POST",
url: "fetch.....data.jsp",
data: "vendorId="+vendor,
success: function(json){
alert( "Received Data: " + json );
}
});
I have implemented this AJAX call to fetch data in the JSON format, and the data that I'm receiving looks like this:
{"rows": [
{"cell":[
104,100,140,"2.99",0.1,1,14,123.55
]
}
]}
I am now trying to figure out how to parse and extract data from this JSON object.
Any suggestions or ideas would be greatly appreciated.
Thank you in advance.