From cb3eada739ce377f80408abe2103c95d5a016918 Mon Sep 17 00:00:00 2001 From: John Resig Date: Fri, 16 Jun 2006 00:33:55 +0000 Subject: [PATCH 1/1] It's now possible to add s and s to a table, using only HTML. --- jquery/jquery.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/jquery/jquery.js b/jquery/jquery.js index fafed0e..9cf6941 100644 --- a/jquery/jquery.js +++ b/jquery/jquery.js @@ -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(""; + } else if ( !a[i].indexOf(""; } + 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]; } -- 1.7.10.4