Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save veryblue/cbd4fa9bd6936058c5a9 to your computer and use it in GitHub Desktop.
Save veryblue/cbd4fa9bd6936058c5a9 to your computer and use it in GitHub Desktop.
window.addEventListener("beforeunload", function (e) {
var confirmationMessage = "入力内容を破棄します。";
e.returnValue = confirmationMessage;
return confirmationMessage;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment