JSFiddle - React, Tailwind, and code Playground

by Ea Bangalore

JavaScript

var iframe = document.createElement('iframe');
var html = '<body style="color:red;">Foo</body>';
iframe.src = 'data:text/html;charset=utf-8,' + encodeURI(html);
document.body.appendChild(iframe);
console.log('iframe.contentWindow =', iframe.contentWindow);