Optional $bindOptional $bindOptional $bindOptional $destroyReadonly ATTRIBUTE_Readonly CDATA_node is a CDATASection node.
Readonly COMMENT_node is a Comment node.
Readonly DOCUMENT_node is a DocumentFragment node.
Readonly DOCUMENT_node is a document.
Readonly DOCUMENT_Set when other is a descendant of node.
Readonly DOCUMENT_Set when other is an ancestor of node.
Readonly DOCUMENT_Set when node and other are not in the same tree.
Readonly DOCUMENT_Set when other is following node.
Readonly DOCUMENT_Readonly DOCUMENT_Set when other is preceding node.
Readonly DOCUMENT_node is a doctype.
Readonly ELEMENT_node is an element.
Readonly ENTITY_Readonly ENTITY_Readonly NOTATION_Readonly PROCESSING_node is a ProcessingInstruction node.
Readonly TEXT_node is a Text node.
Readonly activeReturns the deepest element in the document through which or to which key events are being routed. This is, roughly speaking, the focused element in the document.
For the purposes of this API, when a child browsing context is focused, its container is focused in the parent browsing context. For example, if the user moves the focus to a text control in an iframe, the iframe is the element returned by the activeElement API in the iframe's node document.
Similarly, when the focused element is in a different node tree than documentOrShadowRoot, the element returned will be the host that's located in the same node tree as documentOrShadowRoot if documentOrShadowRoot is a shadow-including inclusive ancestor of the focused element, and null if not.
Readonly baseURIReturns node's node document's document base URL.
Readonly childReadonly childReturns the children.
Readonly childrenReturns the child elements.
Readonly delegatesReadonly firstReturns the first child.
Readonly firstReturns the first child that is an element, and null otherwise.
Readonly fullscreenReturns document's fullscreen element.
Readonly hostReadonly isReturns true if node is connected and false otherwise.
Readonly lastReturns the last child.
Readonly lastReturns the last child that is an element, and null otherwise.
Readonly modeReadonly nextReturns the next sibling.
Readonly nodeReturns a string appropriate for the type of node.
Readonly nodeReturns the type of node.
Readonly ownerReturns the node document. Returns null for documents.
Readonly parentReturns the parent element.
Readonly parentReturns the parent.
Readonly pictureReadonly pointerReadonly previousReturns the previous sibling.
Readonly slotReadonly styleRetrieves a collection of styleSheet objects representing the style sheets that correspond to each instance of a link or style object in the document.
Throws a "NotSupportedError" DOMException if context object is a shadow root.
Optional options: boolean | AddEventListenerOptionsOptional options: boolean | AddEventListenerOptionsInserts nodes after the last child of node, while replacing strings in nodes with equivalent Text nodes.
Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.
Rest ...nodes: (string | Node)[]Returns a bitmask indicating the position of other relative to node.
Returns true if other is an inclusive descendant of node, and false otherwise.
Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
Returns the first element within node's descendants whose ID is elementId.
Returns node's root.
Optional options: GetRootNodeOptionsReturns whether node and otherNode have the same properties.
Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes.
Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.
Rest ...nodes: (string | Node)[]Returns the first element that is a descendant of node that matches selectors.
Returns all element descendants of node that match selectors.
Removes the event listener in target's event listener list with the same type, callback, and options.
Optional options: boolean | EventListenerOptionsOptional options: boolean | EventListenerOptionsReplace all children of node with nodes, while replacing strings in nodes with equivalent Text nodes.
Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.
Rest ...nodes: (string | Node)[]
MDN Reference