JSFiddle - React, Tailwind, and code Playground
by Anu Vidhya
HTML
<div id="container">
</div>
JavaScript
(function () {
window.URL = window.URL || window.webkitURL;
function contentLoaded() {
var blob = new Blob(['alert("hello")'], { type: 'text/javascript' });
var script = document.createElement('script');
script.setAttribute('src', window.URL.createObjectURL(blob));
document.body.appendChild(script);
}
window.addEventListener('DOMContentLoaded', contentLoaded, false);
} ());