diff --git a/entries/appendTo.xml b/entries/appendTo.xml index f3e5da64..562b870d 100644 --- a/entries/appendTo.xml +++ b/entries/appendTo.xml @@ -53,7 +53,7 @@ $( "h2" ).appendTo( $( ".container" ) ); <h2>Greetings</h2> </div> -
If there is more than one target element, however, cloned copies of the inserted element will be created for each target after the first, and that new set (the original element plus clones) is returned.
+If there is more than one target element, however, cloned copies of the inserted element will be created for each target except the last, and that new set (the original element plus clones) is returned.
Before jQuery 1.9, the append-to-single-element case did not create a new set, but instead returned the original set which made it difficult to use the .end()
method reliably when being used with an unknown number of elements.
If there is more than one target element, however, cloned copies of the inserted element will be created for each target after the first.
+If there is more than one target element, however, cloned copies of the inserted element will be created for each target except the last.