| 2324 | // Support: 1.x compatibility |
| 2325 | // Manipulating tables requires a tbody |
| 2326 | function manipulationTarget( elem, content ) { |
| 2327 | return jQuery.nodeName( elem, "table" ) && |
| 2328 | jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? |
| 2329 | |
| 2330 | elem.getElementsByTagName("tbody")[0] || |
| 2331 | elem.appendChild( elem.ownerDocument.createElement("tbody") ) : |
| 2332 | elem; |
| 2333 | } |
| 2334 | |
| 2335 | // Replace/restore the type attribute of script elements for safe DOM manipulation |
| 2336 | function disableScript( elem ) { |