Try this to get particular attributes from JSON
success: function(rs) { $.each(rs.articles, function(index, ele){ alert(this.author); }); }
or else
success: function(rs) { $.each(rs.articles, function(index,ele){ alert(ele.author); }); }
Try this to get particular attributes from JSON
success: function(rs) { $.each(rs.articles, function(index, ele){ alert(this.author); }); }
or else
success: function(rs) { $.each(rs.articles, function(index,ele){ alert(ele.author); }); }