Advertisement
Bgines

On Exit alert/popup unblockable

Oct 1st, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.37 KB | None | 0 0
  1. <html>
  2. <body>
  3. <script>
  4. var warning = true;
  5. window.onbeforeunload = function() {  
  6.   if (warning) {  
  7.     return "You have made changes on this page that you have not yet confirmed. If you navigate away from this page you will lose your unsaved changes";  
  8.     }  
  9. }
  10.  
  11. $('form').submit(function() {
  12.    window.onbeforeunload = null;
  13. });
  14. </script>
  15. </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement