JSFiddle - React, Tailwind, and code Playground
HTML
<div class="col"></div>
JavaScript
var url = "http://pipes.yahooapis.com/pipes/pipe.run?_id=giWz8Vc33BG6rQEQo_NLYQ&_render=json";
$.ajax({
type: "GET",
url: url,
data: "",
contentType: "application/json; charset=utf-8",
dataType: "jsonp",
success: function (result) {
console.log(result);
$(".col").html(result);
}
});