1 2 3 4 5 6 7 8
<body> <p>I will close myself if you close me.</p> <script> window.onbeforeunload = function() { window.close(); }; </script> </body>