Skip to content

Instantly share code, notes, and snippets.

@benmoss
Created June 14, 2011 22:02
Show Gist options
  • Save benmoss/1026033 to your computer and use it in GitHub Desktop.
Save benmoss/1026033 to your computer and use it in GitHub Desktop.
var deleteLinks = $('li.comment a[data-remote=true]');
deleteLinks.live('ajax:complete', function(event, xhr, status) {
$(this).parents("div.post-content").append(xhr.responseText);
$(this).parents("div.comment-stream").remove();
});
deleteLinks.live('ajax:error', function(event) {
alert('sorry, something seems to have gone badly, please try again');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment