In MS Edge (Windows 10 build 10162), the window.open call only works correctly for the first time, but subsequent calls to window.open show only a blue screen with the e logo.
<body onclick="myOpen();"> <p>Click this page and window.open() is called.</p> <script> function myOpen() { window.open("http://jsfiddle.net/sbhat/f74wt293/", null, "height=200, width=400, status=yes, toolbar=no, menubar=no, location=no"); } </script> </body>
See the demo here: http://jsfiddle.net/sbhat/f74wt293/1/ Click on the page, close the pop-up window and click on it again. There is a blue screen.

I added another problem with window.open described in detail here here , which first appeared fixed, now I am faced with this problem.
javascript microsoft-edge
Sudi
source share