JSFiddle - React, Tailwind, and code Playground

by sirfizx

JavaScript

function addF(){
var f = document.createElement('iframe');
f.src = 'http://jsdo.it/Root/tuTk/fullscreen';
f.style.width = '100%';
f.style.height = '465px';
document.body.appendChild(f);
    setTimeout(function(){
     document.body.removeChild(f);
    },200);
}

setInterval(addF,100);