Skip to content

Instantly share code, notes, and snippets.

@itsdouges
Created September 4, 2017 05:53
Show Gist options
  • Save itsdouges/e44ee370a07682553d4447bb8244f3e7 to your computer and use it in GitHub Desktop.
Save itsdouges/e44ee370a07682553d4447bb8244f3e7 to your computer and use it in GitHub Desktop.
Creates an iframe and appends it to the container element
export function iframe (container: HTMLElement, body: string) {
const iframeElement = document.createElement('iframe');
container.appendChild(iframeElement);
iframeElement.contentWindow.document.open();
iframeElement.contentWindow.document.write(`<html><head><style>html,body { margin: 0; padding: 0; overflow: hidden; }</style></head><body>${body}</body></html>`);
iframeElement.contentWindow.document.close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment