JSFiddle - React, Tailwind, and code Playground
by lasha
HTML
<div id="dump" />
CSS
p {
margin-bottom: 20px;
}
JavaScript
$.getJSON('http://gdata.youtube.com/feeds/api/videos?v=2&alt=jsonc&author=communitychannel&max-results=50', function(d) {
var results = (d['data']['items']),
dump = $('#dump');
$.each(results, function(i,el) {
var desc = el['description'];
$(dump).append('<p>' + (i+1) + ') ' + desc + '</p>');
});
});