(elem, content)
| 773 | // Manipulating tables requires a tbody |
| 774 | |
| 775 | function manipulationTarget(elem, content) { |
| 776 | return jQuery.nodeName(elem, "table") && |
| 777 | jQuery.nodeName(content.nodeType === 1 ? content : content.firstChild, "tr") ? |
| 778 | |
| 779 | elem.getElementsByTagName("tbody")[0] || |
| 780 | elem.appendChild(elem.ownerDocument.createElement("tbody")) : |
| 781 | elem; |
| 782 | } |
| 783 | |
| 784 | // Replace/restore the type attribute of script elements for safe DOM manipulation |
| 785 |