static JQuery |
JQuery.$() |
|
static JQuery |
JQuery.$(Attr selector) |
helper method to allow a jquery like code style
|
static JQuery |
JQuery.$(CharSequence selector) |
helper method to allow a jquery like code style.
|
static JQuery |
JQuery.$(Component component) |
helper method to allow a jquery like code style
|
static JQuery |
JQuery.$(Component component,
Attr... additionalSelector) |
helper method to allow a jquery like code style
|
static JQuery |
JQuery.$(Component component,
CharSequence... additionalSelector) |
helper method to allow a jquery like code style
|
JQuery |
JQuery.chain(IFunction function) |
adds a chained function to this jquery instance
|
JQuery |
JQuery.chain(CharSequence functionName) |
adds a chained function to this jquery instance
|
JQuery |
JQuery.chain(CharSequence functionName,
Config config,
Config... extraConfigs) |
adds a chained function to this jquery instance
|
JQuery |
JQuery.closest(Attr selector) |
For each element in the set, get the first element that matches the selector by testing the element itself and
traversing up through its ancestors in the DOM tree.
|
JQuery |
JQuery.closest(CharSequence selector) |
For each element in the set, get the first element that matches the selector by testing the element itself and
traversing up through its ancestors in the DOM tree.
|
JQuery |
JQuery.find(Attr selector) |
Get the descendants of each element in the current set of matched elements, filtered by a selector.
|
JQuery |
JQuery.find(CharSequence selector) |
Get the descendants of each element in the current set of matched elements, filtered by a selector.
|
JQuery |
JQuery.on(Attr events,
Attr selector,
JavaScriptInlineFunction handler) |
Attach an event handler function for one or more events to the selected elements.
|
JQuery |
JQuery.on(Attr events,
JavaScriptInlineFunction handler) |
Attach an event handler function for one or more events to the selected elements.
|
JQuery |
JQuery.on(CharSequence events,
JavaScriptInlineFunction handler) |
Attach an event handler function for one or more events to the selected elements.
|
JQuery |
JQuery.on(CharSequence events,
CharSequence selector,
JavaScriptInlineFunction handler) |
Attach an event handler function for one or more events to the selected elements.
|