Skip to content

Instantly share code, notes, and snippets.

@emulsion-io
Created July 20, 2015 09:45
Show Gist options
  • Save emulsion-io/8f88211e46b539fca3ef to your computer and use it in GitHub Desktop.
Save emulsion-io/8f88211e46b539fca3ef to your computer and use it in GitHub Desktop.
Détection de la fermeture du navigateur
function checkBrowser() {
// Alt+F4 , File->Close detection
if(window.event.clientX < 0 && window.event.clientY < 0) {
// do action
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment