JSFiddle - React, Tailwind, and code Playground
HTML
blah
moo
<b>test</b>
<div id="debug">
DEBUG
</div>
<div id="debug2">
DEBUG 2
</div>
JavaScript
$('#debug').prependTo('body');
setTimeout(function(){
$('#debug2').prependTo('body');
},1000);