JSFiddle - React, Tailwind, and code Playground
HTML
<div>
HI!
<script>
(function( scriptElement ){
var spanNode = document.createElement('span');
var textNode = document.createTextNode('there.');
spanNode.appendChild( textNode );
scriptElement.parentNode.appendChild( spanNode );
}(document.scripts[ document.scripts.length - 1 ]));
</script>
How are you?
</div>