JSFiddle - React, Tailwind, and code Playground

HTML

<iframe id="frame" sandbox="allow-same-origin allow-scripts" srcdoc="" seamless="true"></iframe>

CSS

iframe {
    height: 100px;
    width: 100px;
    border: 1px solid black;
}
#mydiv {
    height: 50px;
    width: 50px;
    background: blue;
}

CoffeeScript

div = document.createElement "div"
div.id = "mydiv"
div.style = "height: 50px; width: 50px; background: blue;"
document.getElementById("frame").contentWindow.document.body.appendChild(div)

console.log document.getElementById("frame").contentWindow.document.getElementById("mydiv")