Results 241 - 260 of 3,929

Node.hasChildNodes()

The Node.hasChildNodes() method returns a Boolean value indicating whether the current Node has child nodes or not.
API DOM Method Node

Node.lastChild

The Node.lastChild read-only property returns the last child of the node. If its parent is an element, then the child is generally an element node, a text node, or a comment node. It returns null if there are no child elements.
API DOM Gecko Property

Node.nodeName

The Node.nodeName read-only property returns the name of the current node as a string.
API DOM Gecko Property

Node.nodeValue

The Node.nodeValue property returns or sets the value of the current node.
API DOM Gecko Property

Node.previousSibling

The Node.previousSibling read-only property returns the node immediately preceding the specified one in its parent's childNodes list, or null if the specified node is the first in that list.
API DOM Gecko Property

NodeFilter

A NodeFilter interface represents an object used to filter the nodes in a NodeIterator or TreeWalker. They don't know anything about the DOM or how to traverse nodes; they just know how to evaluate a single node against the provided filter.
API DOM DOM Reference

NodeIterator.filter

The NodeIterator.filter read-only method returns a NodeFilter object, that is an object implement an acceptNode(node) method, used to screen nodes.
API DOM NodeIterator Property

NodeIterator.nextNode()

The NodeIterator.nextNode() method returns the next node in the set represented by the NodeIterator and advances the position of the iterator within the set.  The first call to nextNode() returns the first node in the set.
API DOM Method NodeIterator

NodeIterator.previousNode()

The NodeIterator.previousNode() method returns the previous node in the set represented by the NodeIterator and moves the position of the iterator backwards within the set.
API DOM Method NodeIterator

NodeIterator.root

The NodeIterator.root read-only property represents the Node that is the root of what the NodeIterator traverses.
API DOM NodeIterator Property

NodeIterator.whatToShow

The NodeIterator.whatToShow read-only property represents an unsigned integer representing a bitmask signifying what types of nodes should be returned by the NodeIterator.
API DOM NodeIterator Property

NodeList

NodeList objects are collections of nodes such as those returned by Node.childNodes and the document.querySelectorAll method.
API DOM Interface NodeList

NonDocumentTypeChildNode.nextElementSibling

The NonDocumentTypeChildNode.nextElementSibling read-only property returns the element immediately following the specified one in its parent's children list, or null if the specified element is the last one in the list.
API DOM NonDocumentTypeChildNode Property

Notation

Represents a DTD notation (read-only). May declare format of an unparsed entity or formally declare the document's processing instruction targets. Inherits methods and properties from Node. Its nodeName is the notation name. Has no parent.
API Obsolete Reference Référence

Notification

The Notification interface of the Notifications API is used to configure and display desktop notifications to the user.
API Interface Notifications Reference

ParentNode.childElementCount

The ParentNode.childElementCount read-only property returns an unsigned long representing the number of child elements of the given element.
API DOM ParentNode Property

ParentNode.children

Node.children is a read-only property that returns a live HTMLCollection of the child elements of Node.
API DOM ParentNode Property