I'm having this odd problem, I just tried to make a normal .clone(). But when I try to .clone() it again it multiplies!
$('.module').live('mouseup',function(e){
tree.clone(this, e);
});
And the function later on
clone : function(that, e) {
$(that).after($(that).clone().attr('id', $(that).attr('id').substr(0,4) + '0'));
}
When I place the code in the mouseup function and use this instead
of the function parameter that it just copies the element one at a time.
Why is the .clone() added to the that parameter as well?