diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 63b6ece9..d21f6858 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -2849,35 +2849,7 @@ jQuery.macros = { * Get a set of elements containing the unique ancestors of the matched * set of elements (except for the root element). * - * @example $("span").ancestors() - * @before
Hello
Hello AgainHello
] - * - * @name ancestors - * @type jQuery - * @cat DOM/Traversing - */ - - /** - * Get a set of elements containing the unique ancestors of the matched - * set of elements, and filtered by an expression. - * - * @example $("span").ancestors("p") - * @beforeHello
Hello AgainHello
] - * - * @name ancestors - * @type jQuery - * @param String expr An expression to filter the ancestors with - * @cat DOM/Traversing - */ - ancestors: jQuery.parents, - - /** - * Get a set of elements containing the unique ancestors of the matched - * set of elements (except for the root element). - * - * @example $("span").ancestors() + * @example $("span").parents() * @beforeHello
Hello AgainHello
] * @@ -2890,7 +2862,7 @@ jQuery.macros = { * Get a set of elements containing the unique ancestors of the matched * set of elements, and filtered by an expression. * - * @example $("span").ancestors("p") + * @example $("span").parents("p") * @beforeHello
Hello AgainHello
] *