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?
|
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?
| ||||
|
feedback
|
|
Use jFeed - a jQuery RSS/Atom plugin. According to the docs, it's as simple as:
Alan H. notes that jFeed is hosted on GitHub. Upvote that comment, very helpful! | |||||||||||||||||||
feedback
|
|
No need for a whole plugin. This will return your RSS as a JSON object to a callback function:
| |||||||||||||||||
feedback
|
|
For those of us coming to the discussion late, starting with 1.5 jQuery has built-in xml parsing capabilities, which makes it pretty easy to do this without plugins or 3rd party services. It has a parseXml function, and will also auto-parse xml when using the $.get function. E.g.:
| ||||
|
feedback
|
| |||
|
feedback
|
|
jFeed doesn't work in IE. Use zRSSFeed. Had it working in 5 minutes | |||||||
feedback
|
|
Use Google AJAX Feed API unless your RSS data is private. It's fast, of course. | ||||
feedback
|
|
jFeed is somewhat obsolete, working only with older versions of jQuery. It has been two years since it was updated. zRSSFeed is perhaps a little less flexible, but it is easy to use, and it works with the current version of jQuery (currently 1.4). http://www.zazar.net/developers/zrssfeed/ Here's a quick example from the zRSSFeed docs:
| |||
feedback
|
|
You can also use jquery-rss, which comes with nice templating and is super easy to use. | |||
|
feedback
|
|
I agree with @Andrew, using Google is a solid, reusable way to do it with the huge benefit that you get JSON back instead of XML. An added advantage of using Google as a proxy is that services that might block your direct access to their data are unlikely to stop Google. Here is an example using ski report and conditions data. This has all of the common real world applications: 1) Third party RSS/XML 2) JSONP 3) Cleaning strings and string to array when you can't get the data exactly the way you want it 4) on load add elements to the DOM. Hope this helps some people!
| |||
|
feedback
|
|
I would go for https://github.com/dawanda/jquery-rss — it's the best option right now, multiple options available! :) | |||
|
feedback
|
|
I'm using jquery with yql for feed. You can retrieve twitter,rss,buzz with yql. I read from http://tutorialzine.com/2010/02/feed-widget-jquery-css-yql/ . It's very useful for me. | |||
|
feedback
|
| ||||
|
feedback
|
| ||||
feedback
|
|
I found a few but have not tried any of them myself. The most promising looks like jFeed. | |||
|
feedback
|
|
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/ | |||
|
feedback
|
|
zRSSfeed which is built upon Jquery and simple theme is awesome. try this. http://www.zazar.net/developers/jquery/zrssfeed/ | |||
|
feedback
|
|
jFeed is easy and has an example for you to test. But if you're parsing a feed from another server, you'll need to allow Cross Origin Resource Sharing (CORS) on the feed's server. You'll also need to check browser support. I uploaded the sample but still did not get support from IE in any version when I changed the url in the example to something like example.com/feed.rss via the http protocol. CORS should be supported for IE 8 and above but the jFeed example did not render the feed. Your best bet is to use Google's API: See: | ||||
|
feedback
|