Skip to content

Instantly share code, notes, and snippets.

@yuta17
Last active July 12, 2018 14:23
Show Gist options
  • Save yuta17/786d9101b2a8d47e55fa4543c0eba70f to your computer and use it in GitHub Desktop.
Save yuta17/786d9101b2a8d47e55fa4543c0eba70f to your computer and use it in GitHub Desktop.
prevent double click jquery
$(function () {
$('form').submit(function () {
const form = $(this);
if (form.hasClass('prevent-double-click')) {
event.preventDefault();
} else {
form.addClass('prevent-double-click');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment