Created
December 7, 2019 06:55
-
-
Save GUIEEN/0caa3c1c1533c9e83c4150aa572b1ef3 to your computer and use it in GitHub Desktop.
Open a new tap with content 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
| // https://stackoverflow.com/a/19078591 | |
| let win = window.open( | |
| '', | |
| 'Title', | |
| 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=780,height=200,top=' + | |
| (screen.height - 400) + | |
| ',left=' + | |
| (screen.width - 840), | |
| ); | |
| win.document.body.innerHTML = 'Your HTML...'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment