Skip to content

Instantly share code, notes, and snippets.

@GUIEEN
Created December 7, 2019 06:55
Show Gist options
  • Select an option

  • Save GUIEEN/0caa3c1c1533c9e83c4150aa572b1ef3 to your computer and use it in GitHub Desktop.

Select an option

Save GUIEEN/0caa3c1c1533c9e83c4150aa572b1ef3 to your computer and use it in GitHub Desktop.
Open a new tap with content JS
// 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