Package | Description |
---|---|
net.java.html.lib.angular.ng | |
net.java.html.lib.dom | |
net.java.html.lib.jquery | |
net.java.html.lib.knockout |
Modifier and Type | Method and Description |
---|---|
ITemplateLinkingFunction |
ICompileService.$apply(Element element) |
IAugmentedJQuery |
IAugmentedJQueryStatic.$apply(Element element) |
IAugmentedJQuery |
IAugmentedJQueryStatic.$apply(Element[] elementArray) |
ITemplateLinkingFunction |
ICompileService.$apply(Element element,
ITranscludeFunction transclude) |
ITemplateLinkingFunction |
ICompileService.$apply(Element element,
ITranscludeFunction transclude,
double maxPriority) |
IInjectorService |
IAngularStatic.bootstrap(Element element)
Use this function to manually start up angular application.
|
IInjectorService |
IAngularStatic.bootstrap(Element element,
Objs[] modules)
Use this function to manually start up angular application.
|
IInjectorService |
IAngularStatic.bootstrap(Element element,
Objs[] modules,
IAngularBootstrapConfig config)
Use this function to manually start up angular application.
|
IAugmentedJQuery |
IAngularStatic.element(Element element)
Wraps a raw DOM element or HTML string as a jQuery element.
|
IAugmentedJQuery |
IAngularStatic.element(Element[] elementArray)
Wraps a raw DOM element or HTML string as a jQuery element.
|
Modifier and Type | Field and Description |
---|---|
static Element |
Exports.frameElement |
Modifier and Type | Method and Description |
---|---|
static Element |
Element.$as(Object obj) |
Element |
HTMLCollection.$get(double index) |
Element |
Document.activeElement() |
Element |
Document.createElementNS(String namespaceURI,
String qualifiedName) |
Element |
Document.elementFromPoint(double x,
double y)
Returns the element for the specified x coordinate and the specified y coordinate.
|
Element |
ElementTraversal.firstElementChild() |
Element |
Window.frameElement() |
Element |
MouseEvent.fromElement() |
Element |
Document.fullscreenElement() |
Element |
SVGSVGElement.getElementById(String elementId) |
Element |
HTMLElement.insertAdjacentElement(String position,
Element insertedElement) |
Element |
HTMLCollection.item()
Retrieves an object from various collections.
|
Element |
HTMLCollection.item(Object nameOrIndex)
Retrieves an object from various collections.
|
Element |
HTMLCollection.item(Object nameOrIndex,
Object optionalIndex)
Retrieves an object from various collections.
|
Element |
ElementTraversal.lastElementChild() |
Element |
HTMLCollection.namedItem(String name)
Retrieves a select object or an object from an options collection.
|
Element |
HTMLAllCollection.namedItem(String name) |
Element |
ElementTraversal.nextElementSibling() |
Element |
HTMLElement.offsetParent() |
Element |
Attr.ownerElement() |
Element |
CSSStyleSheet.owningElement() |
Element |
TextRange.parentElement() |
Element |
Document.pointerLockElement() |
Element |
ElementTraversal.previousElementSibling() |
Element |
NodeSelector.querySelector(String selectors) |
Element |
Event.srcElement() |
Element |
MSGesture.target() |
Element |
MouseEvent.toElement() |
Element |
Document.webkitCurrentFullScreenElement() |
Element |
Document.webkitFullscreenElement() |
Modifier and Type | Method and Description |
---|---|
NodeListOf<Element> |
Element.getElementsByClassName(String classNames) |
NodeListOf<Element> |
Document.getElementsByClassName(String classNames) |
NodeListOf<Element> |
Document.getElementsByName(String elementName)
Gets a collection of objects based on the value of the NAME or ID attribute.
|
NodeListOf<Element> |
Element.getElementsByTagName(String name) |
NodeListOf<Element> |
Document.getElementsByTagName(String tagname) |
NodeListOf<Element> |
Element.getElementsByTagNameNS(String namespaceURI,
String localName) |
NodeListOf<Element> |
Document.getElementsByTagNameNS(String namespaceURI,
String localName) |
NodeListOf<Element> |
NodeSelector.querySelectorAll(String selectors) |
Modifier and Type | Field and Description |
---|---|
Objs.Property<Element> |
JQuery.context
The DOM node context originally passed to jQuery(); if none was passed then context will likely be the document.
|
Objs.Property<Element> |
BaseJQueryEventObject.delegateTarget |
Objs.Property<Element> |
BaseJQueryEventObject.relatedTarget |
Objs.Property<Element> |
BaseJQueryEventObject.target |
Modifier and Type | Method and Description |
---|---|
Element |
JQuery.context() |
Element |
BaseJQueryEventObject.delegateTarget() |
Element |
BaseJQueryEventObject.relatedTarget() |
Element |
BaseJQueryEventObject.target() |
Modifier and Type | Method and Description |
---|---|
Array<Element> |
JQueryStatic.unique(Element[] array)
Sorts an array of DOM elements, in place, with the duplicates removed.
|
Modifier and Type | Method and Description |
---|---|
static JQuery |
Exports.$(Element element) |
static JQuery |
Exports.$(Element[] elementArray) |
static JQuery |
Exports.$(String selector,
Element context) |
JQuery |
JQueryStatic.$apply(Element element) |
JQuery |
JQueryStatic.$apply(Element[] elementArray) |
JQuery |
JQueryStatic.$apply(String selector,
Element context) |
JQuery |
JQuery.add(Element... elements)
Add elements to the set of matched elements.
|
JQuery |
JQuery.add(String selector,
Element context)
Add elements to the set of matched elements.
|
JQuery |
JQuery.after(Element content1,
Object... content2)
Insert content, specified by the parameter, after each element in the set of matched elements.
|
JQuery |
JQuery.append(Element content1,
Object... content2)
Insert content, specified by the parameter, to the end of each element in the set of matched elements.
|
JQuery |
JQuery.appendTo(Element target)
Insert every element in the set of matched elements to the end of the target.
|
JQuery |
JQuery.before(Element content1,
Object... content2)
Insert content, specified by the parameter, before each element in the set of matched elements.
|
JQuery |
JQuery.closest(Element element)
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.
|
Array<Object> |
JQuery.closest(Object selectors,
Element context)
Get an array of all the elements and selectors matched against the current element up through the DOM tree.
|
JQuery |
JQuery.closest(String selector,
Element context)
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.
|
Boolean |
JQueryStatic.contains(Element container,
Element contained)
Check to see if a DOM element is a descendant of another DOM element.
|
Object |
JQueryStatic.data(Element element)
Returns value at named data store for the element, as set by jQuery.data(element, name, value), or the full data store for the element.
|
Object |
JQueryStatic.data(Element element,
String key)
Returns value at named data store for the element, as set by jQuery.data(element, name, value), or the full data store for the element.
|
<T> T |
JQueryStatic.data(Element element,
String key,
T value)
Store arbitrary data associated with the specified element.
|
void |
JQueryStatic.dequeue(Element element)
Execute the next function on the queue for the matched element.
|
void |
JQueryStatic.dequeue(Element element,
String queueName)
Execute the next function on the queue for the matched element.
|
JQuery |
JQuery.filter(Element element)
Reduce the set of matched elements to those that match the selector or pass the function's test.
|
JQuery |
JQuery.find(Element element)
Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
|
JQuery |
JQuery.has(Element contained)
Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element.
|
Boolean |
JQueryStatic.hasData(Element element)
Determine whether an element has any jQuery data associated with it.
|
double |
JQuery.index(Element selector)
Search for a given element from among the matched elements.
|
JQuery |
JQuery.insertAfter(Element target)
Insert every element in the set of matched elements after the target.
|
JQuery |
JQuery.insertBefore(Element target)
Insert every element in the set of matched elements before the target.
|
static JQuery |
Exports.jQuery(Element element) |
static JQuery |
Exports.jQuery(Element[] elementArray) |
static JQuery |
Exports.jQuery(String selector,
Element context) |
JQuery |
JQuery.nextUntil(Element element)
Get all following siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object passed.
|
JQuery |
JQuery.nextUntil(Element element,
String filter)
Get all following siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object passed.
|
JQuery |
JQuery.not(Element elements)
Remove elements from the set of matched elements.
|
JQuery |
JQuery.not(Element[] elements)
Remove elements from the set of matched elements.
|
JQuery |
JQuery.parentsUntil(Element element)
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.
|
JQuery |
JQuery.parentsUntil(Element element,
String filter)
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.
|
JQuery |
JQuery.prepend(Element content1,
Object... content2)
Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
|
JQuery |
JQuery.prependTo(Element target)
Insert every element in the set of matched elements to the beginning of the target.
|
JQuery |
JQuery.prevUntil(Element element)
Get all preceding siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object.
|
JQuery |
JQuery.prevUntil(Element element,
String filter)
Get all preceding siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object.
|
Array<Object> |
JQueryStatic.queue(Element element)
Show the queue of functions to be executed on the matched element.
|
Array<Object> |
JQueryStatic.queue(Element element,
String queueName)
Show the queue of functions to be executed on the matched element.
|
JQuery |
JQueryStatic.queue(Element element,
String queueName,
Function callback)
Manipulate the queue of functions to be executed on the matched element.
|
JQuery |
JQueryStatic.queue(Element element,
String queueName,
Function[] newQueue)
Manipulate the queue of functions to be executed on the matched element.
|
JQuery |
JQueryStatic.removeData(Element element)
Remove a previously-stored piece of data.
|
JQuery |
JQueryStatic.removeData(Element element,
String name)
Remove a previously-stored piece of data.
|
JQuery |
JQuery.replaceAll(Element target)
Replace each target element with the set of matched elements.
|
JQuery |
JQuery.replaceWith(Element newContent)
Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.
|
Array<Element> |
JQueryStatic.unique(Element[] array)
Sorts an array of DOM elements, in place, with the duplicates removed.
|
JQuery |
JQuery.wrap(Element wrappingElement)
Wrap an HTML structure around each element in the set of matched elements.
|
JQuery |
JQuery.wrapAll(Element wrappingElement)
Wrap an HTML structure around all elements in the set of matched elements.
|
JQuery |
JQuery.wrapInner(Element wrappingElement)
Wrap an HTML structure around the content of each element in the set of matched elements.
|
Modifier and Type | Method and Description |
---|---|
JQuery |
JQuery.after(Function.A2<? super Number,? super String,? extends Union.A3<String,Element,JQuery>> func)
Insert content, specified by the parameter, after each element in the set of matched elements.
|
JQuery |
JQuery.append(Function.A2<? super Number,? super String,? extends Union.A3<String,Element,JQuery>> func)
Insert content, specified by the parameter, to the end of each element in the set of matched elements.
|
JQuery |
JQuery.before(Function.A2<? super Number,? super String,? extends Union.A3<String,Element,JQuery>> func)
Insert content, specified by the parameter, before each element in the set of matched elements.
|
JQuery |
JQuery.each(Function.A2<? super Number,? super Element,? extends Object> func)
Iterate over a jQuery object, executing a function for each matched element.
|
JQuery |
JQuery.filter(Function.A2<? super Number,? super Element,? extends Object> func)
Reduce the set of matched elements to those that match the selector or pass the function's test.
|
Boolean |
JQuery.is(Function.A2<? super Number,? super Element,? extends Boolean> func)
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 args.
|
JQuery |
JQuery.map(Function.A2<? super Number,? super Element,? extends Object> callback)
Pass each element in the current matched set through a function, producing a new jQuery object containing the return values.
|
JQuery |
JQuery.not(Function.A2<? super Number,? super Element,? extends Boolean> func)
Remove elements from the set of matched elements.
|
JQuery |
JQuery.prepend(Function.A2<? super Number,? super String,? extends Union.A3<String,Element,JQuery>> func)
Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
|
JQuery |
JQuery.replaceWith(Function.A0<? extends Union.A2<Element,JQuery>> func)
Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.
|
Modifier and Type | Method and Description |
---|---|
Element |
KnockoutStatic.cleanNode(Element node) |
Modifier and Type | Method and Description |
---|---|
Element |
KnockoutStatic.cleanNode(Element node) |
void |
KnockoutStatic.removeNode(Element node) |
void |
KnockoutUtils.setHtml(Element node,
Function.A0<? extends String> html) |
void |
KnockoutUtils.setHtml(Element node,
String html) |
Copyright © 2018. All rights reserved.