-
Notifications
You must be signed in to change notification settings - Fork 35
Traversing
selector
A string containing a selector expression to match elements against.
Get the descendants of each element in the current set of matched elements, filtered by a selector.
index
A zero-based integer indicating which element to retrieve.
Retrieve the DOM element at the specified index, or all elements if no index is provided.
index
A zero-based integer indicating which element to retrieve.
Reduce the set of matched elements to the one at the specified index.
This method does not accept any arguments.
Get the parent of each element in the current set of matched elements.
This method does not accept any arguments.
Retrieve all the DOM elements contained in the set of matched elements as an array.
selector
A string representing a selector expression to find additional elements to add to the set of matched elements.
elements
One or more elements to add to the set of matched elements.
html
An HTML fragment to add to the set of matched elements.
selection
An existing jBone object to add to the set of matched elements.
selector
A string representing a selector expression to find additional elements to add to the set of matched elements.
context
The point in the document at which the selector should begin matching; similar to the context argument of the $(selector, context) method.
Create a new jBone object with elements added to the set of matched elements.