Advertisement
ujiajah1

windows_onbeforeunload

Aug 21st, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <body onbeforeunload="return myFunction()">
  2.  
  3. <script>
  4. function myFunction() {
  5.     return "Write something clever here...";
  6. }
  7. </script>
  8.  
  9.  
  10. <script>
  11. window.onbeforeunload = function (e) {
  12.     var e = e || window.event;
  13.  
  14.     // For IE and Firefox prior to version 4
  15.     if (e) {
  16.         console.log(1);
  17.         e.returnValue = 'Any string';
  18.     }
  19.  
  20.     // For Safari
  21.     return 'Any string';
  22. };
  23. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement