Quantcast
Channel: How to Parse JSON in Feedzilla API - Stack Overflow
Viewing all articles
Browse latest Browse all 3

Answer by pdpMathi for How to Parse JSON in Feedzilla API

$
0
0

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);
        });
    }

Viewing all articles
Browse latest Browse all 3

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>