| 5355 | // Support: IE<8 |
| 5356 | // Manipulating tables requires a tbody |
| 5357 | function manipulationTarget( elem, content ) { |
| 5358 | return jQuery.nodeName( elem, "table" ) && |
| 5359 | jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? |
| 5360 | |
| 5361 | elem.getElementsByTagName("tbody")[0] || |
| 5362 | elem.appendChild( elem.ownerDocument.createElement("tbody") ) : |
| 5363 | elem; |
| 5364 | } |
| 5365 | |
| 5366 | // Replace/restore the type attribute of script elements for safe DOM manipulation |
| 5367 | function disableScript( elem ) { |