Jerry |
Jerry.add(java.lang.String selector) |
Adds elements to the set of matched elements.
|
Jerry |
Jerry.addClass(java.lang.String... classNames) |
Adds the specified class(es) to each of the set of matched elements.
|
Jerry |
Jerry.after(java.lang.String html) |
Inserts content, specified by the parameter, after each
element in the set of matched elements.
|
Jerry |
Jerry.append(java.lang.String html) |
Inserts content, specified by the parameter, to the end of each
element in the set of matched elements.
|
Jerry |
Jerry.attr(java.lang.String name,
java.lang.String value) |
Sets one or more attributes for the set of matched elements.
|
Jerry |
Jerry.before(java.lang.String html) |
Inserts content, specified by the parameter, before each
element in the set of matched elements.
|
Jerry |
Jerry.children() |
Gets the immediate children of each element in the set of matched elements.
|
Jerry |
Jerry.contents() |
Get the children of each element in the set of matched elements,
including text and comment nodes.
|
Jerry |
Jerry.css(java.lang.String... css) |
Sets one or more CSS properties for the set of matched elements.
|
Jerry |
Jerry.css(java.lang.String propertyName,
java.lang.String value) |
Sets one or more CSS properties for the set of matched elements.
|
Jerry |
Jerry.detach() |
Removes the set of matched elements from the DOM.
|
Jerry |
Jerry.each(JerryFunction function) |
Iterates over a jQuery object, executing a function for
each matched element.
|
Jerry |
Jerry.eachNode(JerryNodeFunction function) |
Iterates over a jQuery object, executing a function for
each matched element.
|
Jerry |
Jerry.empty() |
Removes all child nodes of the set of matched elements from the DOM.
|
Jerry |
Jerry.end() |
Ends the most recent filtering operation in the current chain
and returns the set of matched elements to its previous state.
|
Jerry |
Jerry.eq(int value) |
Reduces the set of matched elements to the one at the specified index.
|
Jerry |
Jerry.filter(java.lang.String cssSelectors) |
Reduces the set of matched elements to those that match the selector.
|
Jerry |
Jerry.filter(JerryFunction jerryFunction) |
Reduces the set of matched elements to those that pass the
function's test.
|
Jerry |
Jerry.find(java.lang.String cssSelector) |
Gets the descendants of each element in the current set of matched elements,
filtered by a selector.
|
Jerry |
Jerry.first() |
Reduces the set of matched elements to the first in the set.
|
Jerry |
Jerry.form(java.lang.String formCssSelector,
JerryFormHandler jerryFormHandler) |
Processes all forms, collects all form parameters and calls back the
JerryFormHandler.
|
Jerry |
Jerry.gt(int value) |
Reduces the set of matched elements to the one at an index greater
than specified index.
|
Jerry |
Jerry.has(java.lang.String cssSelectors) |
Reduce the set of matched elements to those that have a descendant that
matches the selector or DOM element.
|
Jerry |
Jerry.html(java.lang.String html) |
Sets the HTML contents of each element in the set of matched elements.
|
Jerry |
Jerry.last() |
Reduces the set of matched elements to the last in the set.
|
Jerry |
Jerry.lt(int value) |
Reduces the set of matched elements to the one at an index less
than specified index.
|
Jerry |
Jerry.next() |
Gets the immediately following sibling of each element in the
set of matched elements.
|
Jerry |
Jerry.nextAll() |
Get all following siblings of each element in the set of matched
elements, optionally filtered by a selector.
|
Jerry |
Jerry.not(java.lang.String cssSelector) |
Removes elements from the set of matched elements.
|
static Jerry |
Jerry.of(char[] content) |
Parses input sequence and creates new Jerry.
|
static Jerry |
Jerry.of(java.lang.CharSequence content) |
Parses input content and creates new Jerry.
|
Jerry |
Jerry.parent() |
Gets the parent of each element in the current set of matched elements.
|
Jerry |
JerryParser.parse(char[] content) |
|
Jerry |
JerryParser.parse(java.lang.CharSequence content) |
|
Jerry |
Jerry.prepend(java.lang.String html) |
Insert content, specified by the parameter, to the beginning of each
element in the set of matched elements.
|
Jerry |
Jerry.prev() |
Gets the immediately preceding sibling of each element in the
set of matched elements.
|
Jerry |
Jerry.prevAll() |
Get all preceding siblings of each element in the set of matched
elements, optionally filtered by a selector.
|
Jerry |
Jerry.remove() |
Removes the set of matched elements from the DOM.
|
Jerry |
Jerry.removeAttr(java.lang.String name) |
Removes an attribute from each element in the set of matched elements.
|
Jerry |
Jerry.removeClass(java.lang.String... classNames) |
Removes a single class, multiple classes, or all classes
from each element in the set of matched elements.
|
Jerry |
Jerry.replaceWith(java.lang.String html) |
Replace each element in the set of matched elements with the provided
new content and return the set of elements that was removed.
|
Jerry |
Jerry.root() |
Returns root Jerry.
|
Jerry |
Jerry.s(java.lang.String cssSelector) |
Selects nodes.
|
Jerry |
Jerry.siblings() |
Gets the siblings of each element in the set of matched elements.
|
Jerry |
Jerry.text(java.lang.String text) |
Sets the content of each element in the set of matched elements to the specified text.
|
Jerry |
Jerry.toggleClass(java.lang.String... classNames) |
Adds or remove one or more classes from each element in the set of
matched elements, depending on either the class's presence or
the value of the switch argument.
|
Jerry |
Jerry.unwrap() |
Remove the parents of the set of matched elements from the DOM, leaving
the matched elements (and siblings, if any) in their place.
|
Jerry |
Jerry.wrap(java.lang.String html) |
Wraps an HTML structure around each element in the set of matched elements.
|