$(".profile_icon").liveDraggable({
start: function(event, ui){
$("#team_deletezone").show();
$(this).addClass('valid');
},
stop: function(event, ui){
$("#team_deletezone").fadeOut();
},
containment: 'document',
helper: 'clone',
opacity: 0.70,
zIndex:10000,
appendTo: "body"
});
So the item drags and then just doesn’t do anything. On the second drop it fires properly?
When the item is dropped it should give a JS alert();
Check out the JSfiddle
Just change
liveDroppabletodroppableand it works: