Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- element.click(function(){
- if ($(this).parent('.linkListGroup').length < 1) {
- alert('Seznam musí obsahovat alespoň jeden odkaz');
- return;
- }
- if (confirm('Opravdu chcete smazat tento odkaz?')) {
- $(this).closest('.linkListGroup').remove();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment