Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Mahendran-Balaji/eb9c87198451561914c48c4a82b46420 to your computer and use it in GitHub Desktop.
Save Mahendran-Balaji/eb9c87198451561914c48c4a82b46420 to your computer and use it in GitHub Desktop.
unsaved-changes-alert-to-user-using-javascript
window.addEventListener('beforeunload', function(e){
e.preventDefault();
e.returnvalue = '';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment