Quantcast
Channel: Parse RSS with jQuery - Stack Overflow
Viewing all articles
Browse latest Browse all 21

Answer by Nathan Strutz for Parse RSS with jQuery

$
0
0

Use jFeed - a jQuery RSS/Atom plugin. According to the docs, it's as simple as:

jQuery.getFeed({
   url: 'rss.xml',
   success: function(feed) {
      alert(feed.title);
   }
});

Viewing all articles
Browse latest Browse all 21

Trending Articles