JSFiddle - React, Tailwind, and code Playground
by Michel Penke
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script id="lobster">
<p>Test</p>
</script>
<script>
$(document).ready(function(){
$('body').append($("#lobster").html());
});
</script>