I am very new into jQuery and JSON. I need to parse a JSON of the following format so as to populate a html table tbody:
{\"response\":[[\"name0\",\"id0\",\"amt0
You can access the JSON structure wiht this Javascript expression:
var matrix = {"response":[["name0","id0","amt0"],["name1","id1","amt1"]]};
The j-th column of the i-th element is accessible with this:
matrix.response[i][j]