Skip to content

Instantly share code, notes, and snippets.

@cvan
Last active February 2, 2021 20:51
Show Gist options
  • Save cvan/4f1f77afc7918fb77bb7a2f71d0f3e0b to your computer and use it in GitHub Desktop.
Save cvan/4f1f77afc7918fb77bb7a2f71d0f3e0b to your computer and use it in GitHub Desktop.
(() => {
const width = window.outerWidth / 2;
const height = window.outerHeight / 2;
const top = 0;
const left = width * 3;
const popupEl = window.open('http://example.com', 'preview', `height=${height},width=${width},scrollbars=yes,left=${left},top=${top}`);
popupEl.focus();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment