rDrama/files/assets/js/volunteer.js
2022-12-01 18:53:24 -08:00

16 lines
425 B
JavaScript

// a tiny script to yell at the user if they try to leave the Volunteer page any way besides the Submit button
var submitting = false;
var onFormSubmit = function() { submitting = true; };
window.onload = function() {
window.addEventListener("beforeunload", function (e) {
if (submitting) {
return undefined;
}
(e || window.event).returnValue = true;
return true;
})
}