Skip to content

Instantly share code, notes, and snippets.

@natbat
Created August 24, 2009 11:12
Show Gist options
  • Save natbat/173820 to your computer and use it in GitHub Desktop.
Save natbat/173820 to your computer and use it in GitHub Desktop.
warning = false;
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 loose your unsaved changes';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment