How to fetch Rss Feed by Jquery
How to get RSS Feed by Ajax easily?
Well this is cool plugins to fetch instant, easily feed display on your website by jquery. Developer can use it any website. its so handy to use. here im going to explain how it will work
for this you need Google AJAX Feed API click here to get
now use following codes under your page <head>
<script src="http://www.google.com/jsapi?key=[your API key]" type="text/javascript"></script> <script src="jquery-1.3.1.js" type="text/javascript"></script> <script src="jquery.gfeed.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function() { $('a.feed').gFeed( { target: '#feeds', tabs: true } ); }); </script>
Â
Options
Options can be passed to the gFeed method using an object literal. The following options are supported:
target
jQuery selector which identifies where the feed content should be inserted on the page.
title
Allows you to provide a specific feed title to override the markup.
url
Allows you to provide a specific url for the feed (which means you don’t have to use anchors).
max
Identifies the maximum number of feed items to display for a given feed. The default is 5.
tabs
true if feeds should be rendered using Google’s tabbed drawing mode.










December 6th, 2009 at 8:35 pm
[...] the rest here: How to fetch Rss Feed by Jquery,Jquery-css gallery, css scripts … Рубрики Scripts Теги: api Best Ajax examples and technique,Php/Mysql/Ajax Hacks-css [...]
January 21st, 2010 at 6:34 pm
awesome job! can this also load rss with images? what about a feed like cnn’s video rss feed?
January 27th, 2010 at 6:34 am
yes, you can
March 24th, 2010 at 5:00 am
this is the best solution out there