It's now possible to add <td>s and <th>s to a table, using only HTML.

This commit is contained in:
John Resig 2006-06-16 00:33:55 +00:00
parent 894fc4b280
commit cb3eada739

14
jquery/jquery.js vendored
View file

@ -408,15 +408,25 @@ $.clean = function(a) {
var r = [];
for ( var i = 0; i < a.length; i++ ) {
if ( a[i].constructor == String ) {
if ( a[i].indexOf("<tr") == 0 ) {
if ( !a[i].indexOf("<tr") ) {
var tr = true;
a[i] = "<table>" + a[i] + "</table>";
} else if ( !a[i].indexOf("<td") || !a[i].indexOf("<th") ) {
var td = true;
a[i] = "<table><tbody><tr>" + a[i] + "</tr></tbody></table>";
}
var div = document.createElement("div");
div.innerHTML = a[i];
if ( tr ) {
if ( tr || td ) {
div = div.firstChild.firstChild;
if ( td ) {
div = div.firstChild;
}
}
for ( var j = 0; j < div.childNodes.length; j++ ) {
r[r.length] = div.childNodes[j];
}