Skip to content

Instantly share code, notes, and snippets.

@erowsika
Last active December 31, 2021 10:01
Show Gist options
  • Save erowsika/eb5885a9551c2c0eb8fd1b3876974ea1 to your computer and use it in GitHub Desktop.
Save erowsika/eb5885a9551c2c0eb8fd1b3876974ea1 to your computer and use it in GitHub Desktop.
$request = null;
$('form').on('submit', function(event) {
event.preventDefault();
if ($request != null) {
$request.abort();
$request = null;
}
$request = $.ajax({
// ...
error: function(err) {
if (err.statusText =='abort') {
return;
}
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment