Guest User

Untitled

a guest
Nov 6th, 2012
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $("a.remove").click(function(e) {
  2.         e.preventDefault();
  3.         var link = $(this).attr('href');
  4.         bootbox.confirm("Really delete?", function(confirmed) {
  5.             if(confirmed) {
  6.                 $.nette.ajax(link);
  7.             }
  8.            
  9.         });
  10.     });
Advertisement
Add Comment
Please, Sign In to add comment