| add( expr )
| Returns: jQuery |
| Adds more elements, matched by the given expression, to the set of matched elements. |
| children( expr )
| Returns: jQuery |
| Get a set of elements containing all of the unique immediate children of each of the matched set of elements. |
| contents( )
| Returns: jQuery |
| Find all the child nodes inside the matched elements (including text nodes), or the content document, if the element is an iframe. |
| find( expr )
| Returns: jQuery |
| Searches for all elements that match the specified expression. This method is a good way to find additional descendant elements with which to process. |
| next( expr )
| Returns: jQuery |
| Get a set of elements containing the unique next siblings of each of the given set of elements. |
| nextAll( expr )
| Returns: jQuery |
| Find all sibling elements after the current element. |
| parent( expr )
| Returns: jQuery |
| Get a set of elements containing the unique parents of the matched set of elements. |
| parents( expr )
| Returns: jQuery |
| Get a set of elements containing the unique ancestors of the matched set of elements (except for the root element).
The matched elements can be filtered with an optional expression. |
| prev( expr )
| Returns: jQuery |
| Get a set of elements containing the unique previous siblings of each of the matched set of elements. |
| prevAll( expr )
| Returns: jQuery |
| Find all sibling elements before the current element. |
| siblings( expr )
| Returns: jQuery |
| Get a set of elements containing all of the unique siblings of each of the matched set of elements.
Can be filtered with an optional expressions. |