JSFiddle - React, Tailwind, and code Playground
by Johan Muller
HTML
<div id="content"></div>
JavaScript
$content= $('#content');
var progressData = function(){
$.ajax({ url: 'http://coinclub.local/1.php' }).done(function(r){
$content.append(r);
});
};
progressData();