JSFiddle - React, Tailwind, and code Playground

by jstenkvist

HTML

<div id="beatles">
            <div>
                <iframe id="gozujinsama"></iframe>
            </div>
        </div>

JavaScript

(function() {
var ifrm = document.getElementById('gozujinsama');
            var doc = ifrm.contentWindow || ifrm.contentDocument.document || ifrm.contentDocument;
            doc.document.open();
            doc.document.write('<DOCTYPE html><html><body><a href=\"http://google.com\"><img src=\"\"/></a></body></html>');
            doc.document.close();
            });