How can I get the attributes or (assign them) of a draggable clone everytime clone is dragged with Jquery?

I can create draggable clones with :

$('.drag').draggable({helper: "clone"}); $('.drag').bind('dragstop', function(event, ui) { $(this).after($(ui.helper).clone().draggable()); });
But how to access the clones attributes anytime I want after I drag them?