JSFiddle - React, Tailwind, and code Playground

by Adan Rehtla

HTML

<pre id="result"></pre>

JavaScript

var url = "http://beta.json-generator.com/api/json/get/EkRU_ItZl";

$.getJSON( url, function( data ) {
    console.log(data);
    $.each( data, function( key, val ) {
        $('#result').append("Key:" + key + " Value:" + JSON.stringify(val) + "<br/>" );
    });
});