Skip to content

Instantly share code, notes, and snippets.

@GitHub30
Last active October 20, 2019 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GitHub30/a90fe9ef876f1a067b8db9715e6ed40e to your computer and use it in GitHub Desktop.
Save GitHub30/a90fe9ef876f1a067b8db9715e6ed40e to your computer and use it in GitHub Desktop.
function printHTML(html) {
const iframe = document.createElement('iframe')
iframe.hidden=true
document.body.appendChild(iframe)
iframe.contentDocument.open()
iframe.contentDocument.write(html)
iframe.contentDocument.close()
iframe.contentWindow.print()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment