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?

link|improve this question

what do you mean it multiplies? – Daniel A. White Nov 29 '11 at 21:09
first when I click i see 2 elements, next time 4, next time 8 and on and on. – Zundrium Nov 29 '11 at 21:13
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.