Skip to content

Instantly share code, notes, and snippets.

@tranchausky
Created April 8, 2025 09:17
Show Gist options
  • Save tranchausky/80b2021f7e08b7e6188f4881062c3d26 to your computer and use it in GitHub Desktop.
Save tranchausky/80b2021f7e08b7e6188f4881062c3d26 to your computer and use it in GitHub Desktop.
javascript call when close tab current
window.addEventListener('beforeunload', function (e) {
console.log('Tab is about to be closed');
// Optionally show a confirmation dialog (not supported in all browsers)
e.preventDefault();
e.returnValue = '';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment