vote up 8 vote down star
6

I am looking for a jQuery solution to parse RSS feeds. I want something reusable and easy...

Know of a plugin? Or a way to do this with jQuery base?

flag

67% accept rate

6 Answers

vote up 11 vote down check

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);
   }
});
link|flag
any examples of real world usage? ie parsing and displaying rather than alert. or is it as simple as $("#results").append(feed.title) – abrudtkuhl Oct 22 '08 at 17:03
NOTE: the download has all kinds of great examples in it – abrudtkuhl Oct 22 '08 at 17:06
good answer but i can't download this plugin how i can download it because tar.gz format is not supports by my winrar – Anirudha Gupta Nov 6 at 23:01
Anirudha, perhaps you can try 7-zip? It's Free, open source, and opens a variety of file types, including tar/gzip. – Nathan Strutz Nov 9 at 15:30
vote up 0 vote down

We recently had to parse out XML from an RSS feed using purely jQuery - if you would like to take a look at some of our source code on how to get it done, feel free to download it from: http://blarnee.com/wp/myspace-blog-reader-widget-using-jquery-ajax-and-greybox/

link|flag
vote up 2 vote down

Using JFeed

function getFeed(sender, uri) {
    jQuery.getFeed({
        url: 'proxy.php?url=' + uri,
        success: function(feed) {
            jQuery(sender).append('<h2>'
            + '<a href="'
            + feed.link
            + '">'
            + feed.title
            + '</a>'
            + '</h2>');

            var html = '';

            for(var i = 0; i < feed.items.length && i < 5; i++) {

                var item = feed.items[i];

                html += '<h3>'
                + '<a href="'
                + item.link
                + '">'
                + item.title
                + '</a>'
                + '</h3>';

                html += '<div class="updated">'
                + item.updated
                + '</div>';

                html += '<div>'
                + item.description
                + '</div>';
            }

            jQuery(sender).append(html);
        }    
    });
}

<div id="getanewbrowser">
  <script type="text/javascript">
    getFeed($("#getanewbrowser"), 'http://feeds.feedburner.com/getanewbrowser')
  </script>
</div>
link|flag
vote up 0 vote down

Should you decide to roll your own, you will find the specifications you require at the RSS Advisory Board

link|flag
vote up 3 vote down

Use Google AJAX Feed API unless your RSS data is private. It's fast, of course.

http://code.google.com/apis/ajaxfeeds/examples.html

link|flag
vote up 0 vote down

I found a few but have not tried any of them myself. The most promising looks like jFeed.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.