JSFiddle - React, Tailwind, and code Playground

HTML

<table id="table">
  <thead>
    <tr>
      <th>Cover</th>
      <th>Song</th>
    </tr>
  </thead>
  <tbody>
  </tbody>
</table>

JavaScript

$(function() {
	$.post("https://itunes.apple.com/search?term=franco+battiato&callback=wsSearchCB", function(data) {
  	$(data.results).each(function(i, item) {
    	$("#table > tbody").append("<tr><td><img src='" + item.artworkUrl30 + "'></td><td>" + item.trackName + "</td></tr>");
    });
  }, "jsonp");
});