I was reading this article where it talks about hackers using Javascript to load windows off the screen:
Here's a screenshot of what I'm talking about:
https://blog.malwarebytes.com/wp-content/uploads/2017/11/os_compare.png
I don't have a need for it anymore, but was trying to load windows like this for a project I was previously working on.
This was the closest I could get to it:
window.open("https://example.com/", "Example","width=10,height=10,left=10000,top=10000,status=no,toolbar=no,scrollbars=no,resizable=no,directories=no,location=no,menubar=no,fullscreen=no,visible=none");
What exactly was I missing when I tried doing it?