.map()

Pass each element in the current matched set through a function, producing a new jQuery object containing the return values.

2016-03-27 13:48:43
.has()

Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element. Given

2016-03-27 13:48:22
.first()

Reduce the set of matched elements to the first in the set. Given a jQuery object that represents

2016-03-27 13:48:22
.parentsUntil()

Get the ancestors of each element in the current set of matched elements, up to but not including the element matched by the selector, DOM node, or jQuery object.

2016-03-27 13:48:55
.is()

Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given

2016-03-27 13:48:26
.next()

Get the immediately following sibling of each element in the set of matched elements. If a selector is provided, it retrieves the next sibling only if it matches that

2016-03-27 13:48:47
.end()

End the most recent filtering operation in the current chain and return the set of matched elements to its previous state.

2016-03-27 13:48:15
.last()

Reduce the set of matched elements to the final one in the set. Given a jQuery object that represents

2016-03-27 13:48:41
.prevUntil()

Get all preceding siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object.

2016-03-27 13:48:59
.filter()

Reduce the set of matched elements to those that match the selector or pass the function's test. Given

2016-03-27 13:48:17