How to parse an RSS feed using JavaScript?
I need to parse an RSS feed (XML version 2.0) and display the parsed details in an HTML page. haylem Parsing the Feed With jQuery 's jFeed (Don't really recommend that one, see the other options.) jQuery.getFeed({ url : FEED_URL, success : function (feed) { console.log(feed.title); // do more stuff here } }); With jQuery 's Built-in XML Support $.get(FEED_URL, function (data) { $(data).find("entry").each(function () { // or "item" or whatever suits your feed var el = $(this); console.log("------------------------"); console.log("title : " + el.find("title").text()); console.log("author : " +