diff options
Diffstat (limited to 'src/manipulation.js')
-rw-r--r-- | src/manipulation.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/manipulation.js b/src/manipulation.js index 0a7209412..f8834e57b 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -334,7 +334,7 @@ jQuery.each( { for ( ; i <= last; i++ ) { elems = i === last ? this : this.clone( true ); jQuery( insert[ i ] )[ original ]( elems ); - push.apply( ret, elems.get() ); + push.apply( ret, elems ); } return this.pushStack( ret ); |