JSFiddle - React, Tailwind, and code Playground
JavaScript
var url = 'http://www.geonames.org/childrenJSON?geonameId=6295630&callback=listPlaces&style=long';
$(function () {
$.getJSON(url)
.success(function (data) {
alert(data);
var listItems = "";
});
});