From: John Resig Date: Mon, 22 Jan 2007 00:25:16 +0000 (+0000) Subject: Fixed an issue with child selectors and XML documents (nodeName isn't in all-caps... X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;ds=sidebyside;h=ddb3004a476d6eec3d449bc39d93fb5b5f98f01b;p=jquery.git Fixed an issue with child selectors and XML documents (nodeName isn't in all-caps, and it was assumed that it was). --- diff --git a/src/selector/selector.js b/src/selector/selector.js index 6a5760a..be279a7 100644 --- a/src/selector/selector.js +++ b/src/selector/selector.js @@ -155,7 +155,7 @@ jQuery.extend({ // Perform our own iteration and filter jQuery.each( ret, function(){ for ( var c = this.firstChild; c; c = c.nextSibling ) - if ( c.nodeType == 1 && ( c.nodeName == m[1].toUpperCase() || m[1] == "*" ) ) + if ( c.nodeType == 1 && ( c.nodeName.toUpperCase() == m[1].toUpperCase() || m[1] == "*" ) ) r.push( c ); });