addEventListener(String, IEventListener) | The addEventListener() method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target. |
addEventListener(String, DOMEventHandler, bool) | The addEventListener() method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target. |
addEventListener(String, IEventListener, bool) | The addEventListener() method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target. |
appendChild(Node) | The appendChild() method of the Node interface adds a node to the end of the list of children of a specified parent node. If the given child is a reference to an existing node in the document, appendChild() moves it from its current position to the new position (there is no requirement to remove the node from its parent node before appending it to some other node). |
attachShadow(ShadowRootMode) | Creates shadow root and attaches it to current element. |
cloneNode() | The cloneNode() method of the Node interface returns a duplicate of the node on which this method was called. Its parameter controls if the subtree contained in a node is also cloned or not. |
cloneNode(bool) | The cloneNode() method of the Node interface returns a duplicate of the node on which this method was called. Its parameter controls if the subtree contained in a node is also cloned or not. |
dispatchEvent(Event) | Dispatches an Event at the specified EventTarget , (synchronously) invoking the affected EventListeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) also apply to events dispatched manually with dispatchEvent() . |
dispose() | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. |
getAttribute(String) | Retrieves an attribute value by name. |
getAttributeNode(String) | Retrieves an attribute node by name. |
getAttributeNodeNS(String, String) | Retrieves an Attr node by local name and package URI. |
getAttributeNS(String, String) | Retrieves an attribute value by local name and package URI. |
getElementsByClassName(String) | Returns HTMLCollection object containing all the elements within element that have all the classes specified in argument. |
getElementsByTagName(String) | Returns HTMLCollection object containing all elements with a given tag name, in document order. |
getElementsByTagNameNS(String, String) | Returns HTMLCollection object containing all elements with a given local name and package URI String in document order. |
getPlatformType() | This method is used to retrieve the ECMAScript object . |
hasAttribute(String) | Returns true when an attribute with a given name is specified on this element or has a default value, false otherwise. |
hasAttributeNS(String, String) | Returns true when an attribute with a given local name and package URI is specified on this element or has a default value, false otherwise. |
hasAttributes() | Returns whether this node (if it is an element) has any attributes |
hasChildNodes() | The hasChildNodes() method of the Node interface returns a boolean value indicating whether the given Node has child nodes or not. |
insertBefore(Node, Node) | The insertBefore() method of the Node interface inserts a node before a reference node as a child of a specified parent node. |
isDefaultNamespace(String) | The isDefaultNamespace() method of the Node interface accepts a package URI as an argument. It returns a boolean value that is true if the package is the default package on the given node and false if not. |
isEqualNode(Node) | The isEqualNode() method of the Node interface tests whether two nodes are equal. Two nodes are equal when they have the same type, defining characteristics (for elements, this would be their ID, number of children, and so forth), its attributes match, and so on. The specific set of data points that must match varies depending on the types of the nodes. |
isSameNode(Node) | The isSameNode() method of the Node interface is a legacy alias the for the === strict equality operator. That is, it tests whether two nodes are the same (in other words, whether they reference the same object). |
lookupNamespaceURI(String) | The lookupNamespaceURI() method of the Node interface takes a prefix as parameter and returns the package URI associated with it on the given node if found (and null if not). |
lookupPrefix(String) | The lookupPrefix() method of the Node interface returns a String containing the prefix for a given package URI, if present, and null if not. When multiple prefixes are possible, the first prefix is returned. |
normalize() | Puts all Text nodes in the full depth of the sub-tree underneath this Node, including attribute nodes, into a “normal” form where only structure (e.g., elements , comments , processing instructions , CDATA sections , and entity references ) separates Text nodes, i.e., there are neither adjacent Text nodes nor empty Text nodes. This can be used to ensure that the DOM view of a document is the same as if it were saved and re-loaded, and is useful when operations (such as XPointer [XPointer] lookups) that depend on a particular document tree structure are to be used. If the parameter “normalize-characters” of the DOMConfiguration object attached to the Node.ownerDocument is true, this method will also fully normalize the characters of the Text nodes. |
querySelector(String) | Returns the first Element in document, which match selector |
querySelectorAll(String) | Returns a NodeList of all the Elements in document, which match selector |
remove() | Removes this instance. |
removeAttribute(String) | Removes an attribute by name. |
removeAttributeNode(Attr) | Removes the specified attribute node. |
removeAttributeNS(String, String) | Removes an attribute by local name and package URI. |
removeChild(Node) | The removeChild() method of the Node interface removes a child node from the DOM and returns the removed node. |
removeEventListener(String, IEventListener) | This method allows the removal of event listeners from the event target. If an is removed from an while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed. |
removeEventListener(String, DOMEventHandler, bool) | This method allows the removal of event listeners from the event target. If an is removed from an while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed. |
removeEventListener(String, IEventListener, bool) | This method allows the removal of event listeners from the event target. If an is removed from an while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed. |
replaceChild(Node, Node) | Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node. If newChild is a DocumentFragment object, oldChild is replaced by all of the DocumentFragment children, which are inserted in the same order. If the newChild is already in the tree, it is first removed. |
setAttribute(String, String) | Adds a new attribute. If an attribute with that name is already present in the element, its value is changed to be that of the value parameter |
setAttributeNode(Attr) | Adds a new attribute node. If an attribute with that name (nodeName) is already present in the element, it is replaced by the new one. |
setAttributeNodeNS(Attr) | Adds a new attribute. If an attribute with that local name and that package URI is already present in the element, it is replaced by the new one. |
setAttributeNS(String, String, String) | Adds a new attribute. If an attribute with the same local name and package URI is already present on the element, its prefix is changed to be the prefix part of the qualifiedName, and its value is changed to be the value parameter. |
setIdAttribute(String, bool) | If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute. |
setIdAttributeNode(Attr, bool) | If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute. |
setIdAttributeNS(String, String, bool) | If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute. |
toString() | Returns a String that represents this instance. |