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.