Skip to content

Instantly share code, notes, and snippets.

@renalpha
Created June 12, 2019 15:26
Show Gist options
  • Save renalpha/af11df22fcce3f8a90dc42b01eb25865 to your computer and use it in GitHub Desktop.
Save renalpha/af11df22fcce3f8a90dc42b01eb25865 to your computer and use it in GitHub Desktop.
Disable buttons
'onclick' => 'confirmAlert(this)'
function confirmAlert(btn) {
var result = confirm("are you sure?");
if (result === true) {
btn.form.submit();
btn.disabled = true;
btn.value = "Sending…";
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment