Guest User

Untitled

a guest
Feb 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. ;(function ($) {
  2. $.fn.deletes = function () {
  3. this.click(function () {
  4. $.ajax({
  5. success: function () {
  6. this
  7. .parents('.deletable:first').remove();
  8. }.bind(this)
  9. })
  10. }).bind(this);
  11. }
  12. })(jQuery)
Add Comment
Please, Sign In to add comment