JSFiddle - React, Tailwind, and code Playground
by roberkules
HTML
<div id="theDivPart"></div>
JavaScript
$.get('http://sumary.org/phpfile.php').done(function(data){
$(function() {
$('#theDivPart').html('The variable I retrieved is: ' + data + '. Isn\'t this nice?');
});
});