diff --git a/jquery/jquery.js b/jquery/jquery.js index bb6c7c52..4f01825d 100644 --- a/jquery/jquery.js +++ b/jquery/jquery.js @@ -764,9 +764,96 @@ new function() { * @param String expr An expression to filter the ancestors with */ ancestors: jQuery.parents, + + /** + * A synonym for ancestors + */ parents: jQuery.parents, + + /** + * Get a set of elements containing the unique next siblings of each of the + * matched set of elements. + * + * It only returns the very next sibling, not all next siblings. + * + * @example $("p").next() + * @before
Hello
Hello Again
Hello Again
,Hello
Hello Again
Hello Again
] + * + * @name next + * @type jQuery + * @param String expr An expression to filter the next Elements with + */ next: "a.nextSibling", + + /** + * Get a set of elements containing the unique previous siblings of each of the + * matched set of elements. + * + * It only returns the immediately previous sibling, not all previous siblings. + * + * @example $("p").previous() + * @beforeHello
And Again
+ * @result [Hello Again
And Again
+ * @result [Hello
And Again
+ * @result [Hello
,And Again
] + * + * @name siblings + * @type jQuery + */ + + /** + * Get a set of elements containing all of the unique siblings of each of the + * matched set of elements, and filtered by an expression. + * + * @example $("div").siblings("selected") + * @beforeHello Again
And Again
+ * @result [Hello Again
] + * + * @name siblings + * @type jQuery + * @param String expr An expression to filter the sibling Elements with + */ siblings: jQuery.sibling };