Make .add() take an optional context and - if a context is specified in the root...
[jquery.git] / src / traversing.js
index 583a303..92f58ba 100644 (file)
@@ -68,9 +68,9 @@ jQuery.fn.extend({
                });
        },
 
-       add: function( selector ) {
+       add: function( selector, context ) {
                var set = typeof selector === "string" ?
-                               jQuery( selector ) :
+                               jQuery( selector, context || this.context ) :
                                jQuery.makeArray( selector ),
                        all = jQuery.merge( this.get(), set );
 
@@ -185,4 +185,4 @@ jQuery.extend({
 
                return r;
        }
-});
\ No newline at end of file
+});