iframe_sync_xhr_unload.html 329 B

12345678910111213141516171819
  1. <!DOCTYPE HTML>
  2. <html>
  3. <body>
  4. <script type="application/javascript">
  5. function o() {
  6. var xhr = new XMLHttpRequest();
  7. xhr.open("GET", "sync_xhr_unload.sjs", false);
  8. try { xhr.send(); } catch(e) {}
  9. }
  10. window.addEventListener("beforeunload", o, false);
  11. window.addEventListener("unload", o, false)
  12. </script>
  13. </body>
  14. </html>