Skip to content

Instantly share code, notes, and snippets.

@bayareawebpro
Last active January 20, 2020 04:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bayareawebpro/81d8d8d6cfd10c0d08d6cc05636ab756 to your computer and use it in GitHub Desktop.
Save bayareawebpro/81d8d8d6cfd10c0d08d6cc05636ab756 to your computer and use it in GitHub Desktop.
<script>
window.addEventListener('beforeunload', function (e) {
// Cancel the event
e.preventDefault();
// Chrome requires returnValue to be set
e.returnValue = '';
// This message may not be shown to the user / vendor specific message may be used...
window.confirm("Are you sure?");
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment