Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <body>
- <script>
- var warning = true;
- window.onbeforeunload = function() {
- if (warning) {
- 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";
- }
- }
- $('form').submit(function() {
- window.onbeforeunload = null;
- });
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement