JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
    
</head>

<body>

Images should show up here:
<div id="images">

</div>


</body>
</html>

CSS

img { display: block; }

JavaScript

$.getJSON("http://www.reddit.com/r/pics/.json?jsonp=?", function(data) { 
    $.each(data.children, function(i,item){
        $("<img/>").attr("src", item.data.url).appendTo("#images");
    });
});