Hi, I am using AJAX call and I'm getting this response:
{ "data": [ [ "1", "2", "3", "4", "5" ], [ "6", "7", "8", "9", "10" ], [ "11", "12", "13", "14", "15" ] ], }
On AJAX call completion, I want to display "data" values in a grid like view consists of 5 columns & 3 rows.
I tried using for/for each loop but I could not find solution.
Any help?
Develop games in your browser. Powerful, performant & highly capable.
Try this:
Oh, and you have an extra comma at the end of JSON, you need to delete it.
dop2000
Oh Thank you. Really helpful