git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
5139bfb
)
Fixed appending rows to a table.
author
John Resig
<jeresig@gmail.com>
Tue, 13 Jun 2006 02:20:15 +0000
(
02:20
+0000)
committer
John Resig
<jeresig@gmail.com>
Tue, 13 Jun 2006 02:20:15 +0000
(
02:20
+0000)
jquery/jquery.js
patch
|
blob
|
history
diff --git
a/jquery/jquery.js
b/jquery/jquery.js
index
9f35e1a
..
b6738a8
100644
(file)
--- a/
jquery/jquery.js
+++ b/
jquery/jquery.js
@@
-387,8
+387,16
@@
$.clean = function(a) {
var r = [];
for ( var i = 0; i < a.length; i++ ) {
if ( a[i].constructor == String ) {
+ if ( a[i].indexOf("<tr") == 0 ) {
+//alert("tr");
+ var tr = true;
+ a[i] = "<table>" + a[i] + "</table>";
+ }
var div = document.createElement("div");
div.innerHTML = a[i];
+ if ( tr ) {
+ div = div.firstChild.firstChild;
+ }
for ( var j = 0; j < div.childNodes.length; j++ ) {
r[r.length] = div.childNodes[j];
}