OpenNewWindow.html 203 B

12345678
  1. <a href="#" onclick="openWindow()"></a>
  2. <script>
  3. function openWindow() {
  4. window.open("window-to-ignore.html", "newWindow");
  5. }
  6. document.getElementsByTagName("a")[0].click();
  7. </script>