Added a fix for #891 (Using a /foo selector within a non-document context.)
authorJohn Resig <jeresig@gmail.com>
Sat, 24 Mar 2007 03:00:03 +0000 (03:00 +0000)
committerJohn Resig <jeresig@gmail.com>
Sat, 24 Mar 2007 03:00:03 +0000 (03:00 +0000)
src/selector/selector.js

index d59a555..856e0f5 100644 (file)
@@ -126,7 +126,7 @@ jQuery.extend({
                        t = t.substr(2,t.length);
 
                // And the / root expression
-               } else if ( !t.indexOf("/") ) {
+               } else if ( !t.indexOf("/") && !context.ownerDocument ) {
                        context = context.documentElement;
                        t = t.substr(1,t.length);
                        if ( t.indexOf("/") >= 1 )