From b0fe380cf89564305646bbd55d1fd7bd210fd591 Mon Sep 17 00:00:00 2001 From: John Resig Date: Sat, 7 Nov 2009 16:43:31 +0100 Subject: Make .add() take an optional context and - if a context is specified in the root selector - use that as the base context. --- src/traversing.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/traversing.js b/src/traversing.js index 583a303d6..92f58ba9c 100644 --- a/src/traversing.js +++ b/src/traversing.js @@ -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 +}); -- cgit v1.2.3