JSFiddle - React, Tailwind, and code Playground
by dimaslanjaka
HTML
<div id="FrameQ"></div>
JavaScript
var iframe = document.createElement('iframe');
var html = '<body>xVx</body>';
iframe.src = 'data:text/html;charset=utf-8,' + encodeURI(html);
//document.body.appendChild(iframe);
//console.log('iframe.contentWindow =', iframe.contentWindow);
document.getElementById("FrameQ").appendChild(iframe);