jsFeed (RSS -> JSONP)
by dandiebolt
HTML
<script src="https://www.quickbase.com/db/befe2yy7d?a=dbpage&pagename=jquery.jgfeed.js"></script>
<script src="https://github.com/jquery/jquery-tmpl/raw/master/jquery.tmpl.min.js"></script>
<h2>P2PU Feeds ATOM/RSS -> JSONP (http://blogs.p2pu.org/feed/)<hr/></h2><script id="template" type="text/x-jquery-tmpl">
Title: ${title}<br/>
Author: ${author}<br/>
<a target="_blank" href="${link}">Link</a><br/>
{{html content}}<br/>
<hr/>
</script>
<div id="info"></div>
JavaScript
$.jGFeed('http://blogs.p2pu.org/feed/',function(feeds){
if(!feeds){
return false;
}
$("#template").tmpl(feeds.entries).appendTo("#info");
}, 4);