JSFiddle - React, Tailwind, and code Playground
by Chace
HTML
<div id="listingContainer">
<div id="listing">
<table class="table table-hover table-striped" id="listingTable">
<tbody id="places">
<img src="http://www.henley-putnam.edu/Portals/_default/Skins/henley/images/loading.gif">
</tbody>
</table>
</div>
</div>
JavaScript
window.setTimeout(blahFunc,5000)
function blahFunc() {
$("#places").html('done');
}