JSFiddle - React, Tailwind, and code Playground

by adamholdenyall

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");
});