JSFiddle - React, Tailwind, and code Playground
by stevenkaspar
JavaScript
var iframe = document.createElement('iframe')
console.log(iframe)
iframe.addEventListener('load', () => {
console.log('loasd')
iframe.contentWindow.document.open()
iframe.contentWindow.document.write(`
<html>
<head></head>
<body><div contenteditable>test</div></body>
</html>
`)
iframe.contentWindow.document.close()
})
iframe.src = 'about:blank'
document.body.appendChild(iframe)