JSFiddle - React, Tailwind, and code Playground
HTML
<div id="test"></div>
JavaScript
$(function () {
function test(data) {
$("#test").text(data.name + " " + data.age);
}
$.get("http://adam-holden.com/PHP/hello.php?callback=test", test, "jsonp");
});