1 2 3 4 5 6 7 8
<script> function openNew() { var w = window.open(); } </script> <body> <button onclick="openNew()">click me</button> </body>