| 5888 | // Support: IE<8 |
| 5889 | // Manipulating tables requires a tbody |
| 5890 | function manipulationTarget( elem, content ) { |
| 5891 | return jQuery.nodeName( elem, "table" ) && |
| 5892 | jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? |
| 5893 | |
| 5894 | elem.getElementsByTagName( "tbody" )[ 0 ] || |
| 5895 | elem.appendChild( elem.ownerDocument.createElement( "tbody" ) ) : |
| 5896 | elem; |
| 5897 | } |
| 5898 | |
| 5899 | // Replace/restore the type attribute of script elements for safe DOM manipulation |
| 5900 | function disableScript( elem ) { |