JSFiddle - React, Tailwind, and code Playground
HTML
<div id="picasa"></div>
JavaScript
// picasa url
var picasaUrl = 'https://picasaweb.google.com/data/feed/base/user/dklongley/albumid/5652509740618945633?alt=json&callback=?';
$.getJSON(picasaUrl, function(json) {
var html = "<ul>";
$.each(json.feed.entry, function(i, pics) {
var pictures = pics.media$group.media$content[0].url;
html += '<li><img src="' + (pictures) + '" width="180" height="220" alt="" /></li>';
});
html += "</ul>";
$('#picasa').html(html).fadeIn('slow');
});