NannuFeed A jQuery Based Feed Plugin
This entry was posted on Thursday, October 6th, 2011 and is filed under JavaScript, jQuery, PHP, Plugin, Python, Technology.
NannuFeed is a free jquery based feed reader plugin. NannuFeed is released under MIT Licence and GPL. NannuFeed is lightweight and is easy to use.
Features of NannuFeed are
- Easy to use and customize.
- Automatic Feed Detection from given URL.
- Inbuilt TimeAgo Plugin.
- Customized Error Message.
- External Feeds are loaded via PHP or Python Proxy.
- Compatible with all browser (Including IE 6+)
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="NannuFeed.js"/></script>
<script type="text/javascript">
$(document).ready(function() {
$('div.feed').NannuFeed();//Nannu Feed with No Options
$('div.feeds').NannuFeed({
'count':5,
'errmsg':'Something Wrong',//Error Message
'description':true,//if true descriptions are loaded
'more':true,// More enables append link or image etc at bottom
'innerHTML':true,//Loads feed directly
'moretip':'Something'//Adds something at the bottom
});
});
</script>
<div class="feed" link="http://www.cnn.com"></div>
<div class="feeds">http://www.ndtv.com"</div>
Feeds from CNN.com would be loaded into container feed and Feeds from NDTV would be loaded into container feeds. Please view slide for additional details.
Examples
Nannu feed
View more presentations from Raghavendra Nayak
You Might Also Like
Filed Under: JavaScript, jQuery, PHP, Plugin, Python, Technology