JSFiddle - React, Tailwind, and code Playground

by Matt Ball

HTML

<p>Some example text</p>
<script>
function createIframe() {
    var iframe = document.createElement('iframe');
    iframe.src = '//example.com'

    var thisScript = document.scripts[document.scripts.length - 1];
    var parent = thisScript.parentElement;
    parent.replaceChild(iframe, thisScript);
}

createIframe();
</script>
<p>More text</p>