( elem, content )
| 5130 | |
| 5131 | // Manipulating tables requires a tbody |
| 5132 | function manipulationTarget( elem, content ) { |
| 5133 | return jQuery.nodeName( elem, "table" ) && |
| 5134 | jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? |
| 5135 | |
| 5136 | elem.getElementsByTagName( "tbody" )[ 0 ] || |
| 5137 | elem.appendChild( elem.ownerDocument.createElement( "tbody" ) ) : |
| 5138 | elem; |
| 5139 | } |
| 5140 | |
| 5141 | // Replace/restore the type attribute of script elements for safe DOM manipulation |
| 5142 | function disableScript( elem ) { |