JSFiddle - React, Tailwind, and code Playground

by Arnold Daniels

HTML

<iframe></iframe>

JavaScript

const iframe = document.getElementsByTagName('iframe')[0];
iframe.setAttribute('srcdoc', '<b>Test</b>');

setTimeout(() => {
	console.log(iframe.contentDocument.documentElement.innerHTML)
}, 20);