up vote 1 down vote favorite
share [g+] share [fb]

I've never had this issue before, so I'm somewhat lost. I'm getting two different results using essentially the same underlying code. The first way is this:

$(".myClassSelector").append(somejQueryObject);

The second way, which doesn't appear to work the same, is this:

$(".myClassSelector").each(function() { $(this).append(somejQueryObject) });

The second example only appends somejQueryObject to the last .myClassSelector found.

link|improve this question

Interesting, did you run through a debug trace? One loop only? – o.k.w Oct 29 '09 at 11:09
feedback

2 Answers

up vote 5 down vote accepted

My guess is that with the first approach jQuery internally clones the jQuery object for each of the matched elements of the selector, while with the second it just keeps appending the same object (thus removing it from earlier appended elements). Try this:

$(".myClassSelector").each(function() { $(this).append(somejQueryObject.clone()) });
link|improve this answer
I think that is it. It is the same object being 'moved' with each 'add' until the last one. +1 – o.k.w Oct 29 '09 at 11:26
That was it... but I'm very disappointed in the way that works. It should be that .append() as a whole works the same on every object, either a single, or multiple... I wonder actually if it is a bug. – Brian Reindel Oct 29 '09 at 15:47
It's definitely not a bug, and in many applications you actually want to the object around instead of cloning (think draggable/droppable for one). – reko_t Oct 29 '09 at 15:49
feedback

When you use append on a jQuery object, it moves the object form its current location to the new location. Each iteration of your loop moves somejQueryObject to the next element. clone() is needed if you want to append a copy to each element.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.