- Get nth row from JSON array generated by YQL
- $.each(data.query.results.results.row, function (i, item) {
- data.query.results.results.row[1]
- $.each(data.query.results.results[1].row, function (i, item) { … });
- $.each(data.query.results.results, function (i, results) {
- $.each(results.row, function (i, item) {
- // do something
- });
- });