[jQuery] Re: peculiar behaviour of clone

2009-06-23 Thread Scott Sauyet
brown.33 wrote: But if we apply prepend for $j(#begin_947).clone().prepend($j ('#end_947')), it is deleting the entire end_947 element. Can somebody explain me, why it is happening like this. Do you really mean the following?: $j(#begin_947).prepend($j('#end_947').clone()); This says,

[jQuery] Re: peculiar behaviour of clone

2009-06-23 Thread browny van
Thank you, that is what i wanted.