JSFiddle - React, Tailwind, and code Playground

HTML

<h1>Blah Blah Blah</h1>

<h2>List of ifixit guides:</h2>
<ol id=guidelist></ol>

JavaScript

$.ajax({ url: "http://www.ifixit.com/api/0.1/guides?limit=50",
         dataType: "jsonp",
         jsonp: "jsonp",
         success: function(data) {
             var guidelist = $("#guidelist");
             $.each(data, function(index, val) {
                 var img = $('<img/>', { src: val["thumbnail"] });
                 var anchor = $('<a/>',
                    { text: val["device"] + ' ' + val["subject"] + ' ' + val["type"],
                      href: "http://www.ifixit.com/Guide/" + val["guideid"] + "/0" });
                 $('<li/>').append(img, anchor).appendTo(guidelist);
             });
         }
    });