Skip to content

Instantly share code, notes, and snippets.

@Modicrumb
Created January 16, 2019 21:35
Show Gist options
  • Save Modicrumb/20a489440981ca432ea12f5a9eb1e4bb to your computer and use it in GitHub Desktop.
Save Modicrumb/20a489440981ca432ea12f5a9eb1e4bb to your computer and use it in GitHub Desktop.
$.ajax({
url: formUrl,
success: function (data) {
console.log(data);
if (data.success) {
$deleteButton.parent().parent().parent().remove();
} else {
alert('Could not delete Material');
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment