Skip to content

Instantly share code, notes, and snippets.

@luislobo14rap
Last active January 17, 2020 12:21
Show Gist options
  • Save luislobo14rap/76f3e1d8674fab09068430e017c48b90 to your computer and use it in GitHub Desktop.
Save luislobo14rap/76f3e1d8674fab09068430e017c48b90 to your computer and use it in GitHub Desktop.
browser-exit-confirmation.js
// browser-exit-confirmation.js v1
window.onbeforeunload = function(event){
event = event || window.event;
return 'Sure?';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment