Skip to content

Instantly share code, notes, and snippets.

@memandip
Created January 10, 2020 08:57
Show Gist options
  • Select an option

  • Save memandip/c5c0dd991c3b0dda4f29a0d90c68d2e8 to your computer and use it in GitHub Desktop.

Select an option

Save memandip/c5c0dd991c3b0dda4f29a0d90c68d2e8 to your computer and use it in GitHub Desktop.
Print Preview (JS)
let myWindow = window.open('', 'PRINT', 'height=auto,width=auto')
myWindow.document.write('
<!doctype html>
<head>
<title>My github homepage</title>
</head>
<body>
<h1>Stay tuned.</h1>
</body>
</html>
')
myWindow.document.close()
myWindow.focus()
myWindow.print()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment