JSFiddle - React, Tailwind, and code Playground
HTML
<div id="stuff">stuff</div>
JavaScript
function getStuff() {
$('#stuff').load('/echo/html/', { html: 'more stuff' }, function() { getStuff(); $('#stuff').append(' ~ ' + Math.floor((Math.random()*10)+1));});
}
getStuff();