| 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. |
| find( expr ) | Returns: jQuery |
| Searches for descendent elements that match the specified expression. |
| next( expr ) | Returns: jQuery |
| Get a set of elements containing the unique next siblings of each of the given set of elements. |
| parent( expr ) | Returns: jQuery |
| Get the direct parent of an element. If called on a set of elements, parent returns a set of their unique direct parent 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). |
| prev( expr ) | Returns: jQuery |
| Get a set of elements containing the unique previous siblings of each of the matched set of elements. |
| siblings( expr ) | Returns: jQuery |
| Get a set of elements containing all of the unique siblings of each of the matched set of elements. |