Skip to content

Instantly share code, notes, and snippets.

@quinn
Created November 10, 2008 05:15
Show Gist options
  • Save quinn/23425 to your computer and use it in GitHub Desktop.
Save quinn/23425 to your computer and use it in GitHub Desktop.
;(function ($) {
$.fn.deletes = function () {
this.click(function () {
$.ajax({
success: function () {
this
.parents('.deletable:first').remove();
}.bind(this)
})
}).bind(this);
}
})(jQuery)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment