Skip to content
Alexey Kupriyanenko edited this page Nov 10, 2013 · 8 revisions

.find(selector)

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.

.get(index)

index A zero-based integer indicating which element to retrieve.

Retrieve the DOM elements matched by the jQuery object.

.eq(index)

index A zero-based integer indicating which element to retrieve.

Reduce the set of matched elements to the one at the specified index.

.html()

This method does not accept any arguments.

Get the HTML contents of the first element in the set of matched elements.

.html(html)

html A string of HTML, HTMLElement, jBone Object or DocumentFragment to set as the content of each matched element.

Set the HTML contents of each element in the set of matched elements.

.empty()

This method does not accept any arguments.

Remove all child nodes of the set of matched elements from the DOM.

.remove()

This method does not accept any arguments.

Remove the set of matched elements from the DOM.