JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://sdepold.github.io/jquery-rss/src/jquery.rss.js"></script>
<div id="rss-styled">
</div>
JavaScript
var rssurl = 'https://api.flickr.com/services/feeds/photos_public.gne?id=113975074@N04';
//alert(rssurl);
$("#rss-styled").rss(rssurl, {
limit: 1000,
filter: function (entry, tokens) {
$.each(tokens, function (i, item) {
if (i == "body") {
var obj = $('<div/>').append(item);
$("#rss-styled").append(obj.find('p').eq(1).html());
}
});
}
}).show();