mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Fix #14290. Don't throw if text node is appended to table. Close gh-1371.
(cherry picked from commit ec3ac9a247
)
This commit is contained in:
parent
60004e68f8
commit
75a0b4a73f
@ -105,7 +105,7 @@ function fixDefaultChecked( elem ) {
|
|||||||
// Manipulating tables requires a tbody
|
// Manipulating tables requires a tbody
|
||||||
function manipulationTarget( elem, content ) {
|
function manipulationTarget( elem, content ) {
|
||||||
return jQuery.nodeName( elem, "table" ) &&
|
return jQuery.nodeName( elem, "table" ) &&
|
||||||
jQuery.nodeName( content.nodeType === 1 ? content : content.firstChild, "tr" ) ?
|
jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ?
|
||||||
|
|
||||||
elem.getElementsByTagName("tbody")[0] ||
|
elem.getElementsByTagName("tbody")[0] ||
|
||||||
elem.appendChild( elem.ownerDocument.createElement("tbody") ) :
|
elem.appendChild( elem.ownerDocument.createElement("tbody") ) :
|
||||||
|
Loading…
Reference in New Issue
Block a user