Home | History | Annotate | Download | only in parse-only

Lines Matching refs:tbody

533 				(elem.getElementsByTagName("tbody")[0] ||
534 elem.appendChild(elem.ownerDocument.createElement("tbody"))) :
891 tags.match(/^<(thead|tbody|tfoot|colg|cap)/) &&
895 [ 2, "<table><tbody>", "</tbody></table>" ] ||
899 [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ] ||
902 [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ] ||
917 // Remove IE's autoinserted <tbody> from table fragments
918 if ( !jQuery.support.tbody ) {
920 // String was a <table>, *may* have spurious <tbody>
921 var hasBody = /<tbody/i.test(elem),
922 tbody = !tags.indexOf("<table") && !hasBody ?
930 for ( var j = tbody.length - 1; j >= 0 ; --j )
931 if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length )
932 tbody[ j ].parentNode.removeChild( tbody[ j ] );
3136 // Make sure that tbody elements aren't automatically inserted
3138 tbody: !div.getElementsByTagName("tbody").length,