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?
Sunday, December 30, 2012
Get attributes of a clone with jquery
Labels:
attributes,
clone,
jquery
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment