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