.append(content) | Inserts content at the end of the interior of the elements matched by the selector |
.children(selector) | Gets the child nodes matching the (optional) selector |
.closest(selector) | Gets the nearest ancestor matching the selector. Especially useful with the 'form' selector. |
.each(function(index, item) { . . . } ) | Iterate — not to be confused with $.each(collection, function(index, item){ . . . }) |
.eq(index) | Select by index |
.filter(selector) | Further drill-down the selection of element(s) |
.find(selector) | Gets the descendants matching the selector |
.first() | Get just the first element in the set |
.hasClass(class) | Determine whether any of the matched elements are assigned the specified class. |
.html() | Returns all the inner HTML (i.e., not including the HTML for the element itself) within the selected elements |
.last() | Gets just the last element in the set |
.next(selector) | Gets the immediately next sibling to each element in the set, optionally filtered by a selector |
.parent(selector) | Gets the parent to each element in the set, optionally filtered by a selector |
.prepend(content) | Inserts content at the beginning the interior of the elements matched by the selector |
.prev(selector) | Gets the immediately previous sibling to each element in the set, optionally filtered by a selector |
.replaceWith(content) | Replaces the elements matched by the selector with the content |
.toggle() | Toggles the visibility of elements matched by the selector |