Vanilla | Create iFrame from Textarea Content
/* Create iFrame from Textarea Content Html */
function setFrame() {
var HTMLval = TextareaContentID.value;
var iframe = document.getElementById('iframeID');
iframe.contentWindow.document.open();
iframe.contentWindow.document.write(HTMLval);
iframe.contentWindow.document.close();
}
