beforeunload-false.html 297 B

1234567891011121314
  1. <html>
  2. <body>
  3. <script type="text/javascript" charset="utf-8">
  4. // Only prevent unload on the first window close
  5. var unloadPrevented = false;
  6. window.onbeforeunload = function() {
  7. if (!unloadPrevented) {
  8. unloadPrevented = true;
  9. return false;
  10. }
  11. }
  12. </script>
  13. </body>
  14. </html>