| 4917 | // Support: 1.x compatibility |
| 4918 | // Manipulating tables requires a tbody |
| 4919 | function manipulationTarget( elem, content ) { |
| 4920 | return jQuery.nodeName( elem, "table" ) && |
| 4921 | jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? |
| 4922 | |
| 4923 | elem.getElementsByTagName("tbody")[0] || |
| 4924 | elem.appendChild( elem.ownerDocument.createElement("tbody") ) : |
| 4925 | elem; |
| 4926 | } |
| 4927 | |
| 4928 | // Replace/restore the type attribute of script elements for safe DOM manipulation |
| 4929 | function disableScript( elem ) { |