i am using following code
var $albumcover = $('#albumcover');
<br>
$albumcover.droppable({
<br>
accept: '#trash2 li',
<br>
activeClass: 'ui-state-highlight',
drop: function(ev, ui) {
<br>
$(this).append($(ui.draggable).clone().attr('alt', 'nat'));
<br>
$(this).find('img').css('width','100px');
<br>
$(this).find('img').css('height','100px');
}
});
how can i
add events to clone element when it's created so it should be drag able again...