Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $("a.remove").click(function(e) {
- e.preventDefault();
- var link = $(this).attr('href');
- bootbox.confirm("Really delete?", function(confirmed) {
- if(confirmed) {
- $.nette.ajax(link);
- }
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment