Is there a way to get the draggable to disappear using an alternative
animation effect? I've got the following:
$('#dragitem').draggable({ helper: 'clone', revert: 'invalid' });
$('#dropitem').droppable({ accept: '#dragitem',
drop: function(event, ui)
{
ui.helper.hide('puff');
}
});
It's reverting on invalid, which is what I want. But when the drag
item is dropped on a valid drop target, it just disappears. I'd like
to change it so that the puff effect is used instead. However, the
above isn't working.
Is what I am wanting to do even possible? If so, what am I doing wrong?
thnx,
Christoph
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---