Skip to content

Instantly share code, notes, and snippets.

@Langmans
Created June 19, 2024 12:18
Show Gist options
  • Save Langmans/edf0bde71595bcf9cbb8165f653e6fe9 to your computer and use it in GitHub Desktop.
Save Langmans/edf0bde71595bcf9cbb8165f653e6fe9 to your computer and use it in GitHub Desktop.
disable submit buttons on page leave
// this disables users clicking the submit button multiple times for forms without submit event handlers.
window.onbeforeunload = function () {
Array.from(document.querySelectorAll('[type=submit],[type=image],[type=reset]')).forEach(function (el) {
if (el.form) {
el.disabled = true;
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment