onbeforeunload.html 426 B

1234567891011121314151617181920
  1. <!doctype html>
  2. <html>
  3. <script src="../../jquery.js"></script>
  4. <script>
  5. function report( event ) {
  6. var payload = {
  7. event: event.type
  8. };
  9. return parent.postMessage( JSON.stringify(payload), "*" );
  10. }
  11. jQuery( window ).on( "beforeunload", function( event ) {
  12. report( event );
  13. }).on( "load", function( event ) {
  14. setTimeout(function() {
  15. window.location.reload();
  16. }, 50);
  17. });
  18. </script>
  19. </html>