I am learning json now.
$.ajax({
async: true,
type: "POST",
url: "get.....values.asp",
data: "vendorId="+vendor,
success: function(json){
alert( "Data retrieved: " + json );
}
});
I am using this ajax call to get the data as json and data is coming as fallowing:
{"rows": [
{"cell":[
104,100,140,"2.99",0.1,1,14,123.55
]
}
]}
How can i retrieve the data from this json object?
can any one give Idea?
thanks in advance.
$.parseJSON(json)will do the work.