Created
April 8, 2025 09:17
-
-
Save tranchausky/80b2021f7e08b7e6188f4881062c3d26 to your computer and use it in GitHub Desktop.
javascript call when close tab current
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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