Skip to content

Instantly share code, notes, and snippets.

@ericoutinho
Created April 6, 2022 15:34
Show Gist options
  • Select an option

  • Save ericoutinho/6fe68c97cadc3129f632ccbb1926a3dc to your computer and use it in GitHub Desktop.

Select an option

Save ericoutinho/6fe68c97cadc3129f632ccbb1926a3dc to your computer and use it in GitHub Desktop.
Prevenir fechamento da aba do website
// Prevenir o fechamento da aba do website
// com aviso do navegador
window.addEventListener("beforeunload", event => {
event.preventDefault();
event.returnValue = '';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment