diff options
author | Richard Gibson <richard.gibson@gmail.com> | 2017-01-09 11:37:12 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-09 11:37:12 -0800 |
commit | efdb8a46e4213dcf69f792c42c234c6b112ba471 (patch) | |
tree | 72aee4a6e87dd7dcf8cc71262e0bb11ef9f87442 /src | |
parent | 9d822bc1c13dd3393b418210a99537c22c06f2c3 (diff) | |
download | jquery-efdb8a46e4213dcf69f792c42c234c6b112ba471.tar.gz jquery-efdb8a46e4213dcf69f792c42c234c6b112ba471.zip |
Manipulation: Restrict the tbody search to child nodes
For performance, use a querySelectorAll path instead of Javascript iteration.
http://codepen.io/anon/pen/vywJjx?editors=1010
Fixes gh-3439
Closes gh-3463
Diffstat (limited to 'src')
-rw-r--r-- | src/manipulation.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/manipulation.js b/src/manipulation.js index 9b4f5e451..4f79f8998 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -47,11 +47,12 @@ var rscriptTypeMasked = /^true\/(.*)/, rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g; +// Prefer a tbody over its parent table for containing new rows function manipulationTarget( elem, content ) { if ( jQuery.nodeName( elem, "table" ) && jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { - return elem.getElementsByTagName( "tbody" )[ 0 ] || elem; + return jQuery( ">tbody", elem )[ 0 ] || elem; } return elem; |