HosipLan

Untitled

Aug 21st, 2011
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.25 KB | None | 0 0
  1. element.click(function(){
  2.     if ($(this).parent('.linkListGroup').length < 1) {
  3.         alert('Seznam musí obsahovat alespoň jeden odkaz');
  4.         return;
  5.     }
  6.  
  7.     if (confirm('Opravdu chcete smazat tento odkaz?')) {
  8.         $(this).closest('.linkListGroup').remove();
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment