Created
January 10, 2020 08:57
-
-
Save memandip/c5c0dd991c3b0dda4f29a0d90c68d2e8 to your computer and use it in GitHub Desktop.
Print Preview (JS)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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