draggables on mousedown with 1.6
I want to create draggables dinamically on mousedown over some divs. For some reasons I don't want to create the draggable object before the user need it.
To do this in jQuery UI 1.5 I did:
<div style="margin-left: 40px;">
$('img').bind('mousedown', function(e) {
$(this).draggable().trigger('mousedown.draggable', e);
})
</div>
But this code is not working with version 1.6rc5.
Somebody knows a wa to do this with the last version?
Thanks in advance.