JSFiddle - React, Tailwind, and code Playground
HTML
<div id="rows">
</div>
JavaScript
var theURL = "http://api.opentracker.net/api/views/[email protected]&password=demo123&site=footprintlive.com&dataType=jsondatatable&callback=?&limit=10&timeZone=detect";
$.getJSON( theURL)
.done(function( data ) {
$.each( data, function( i, item ) {
$('#rows').append(i + '<br />');
$.each( item, function(info) {
$('#rows').append(in,nfo + ' / ');
});
});
});