Results 301 - 320 of 1,243

NamedNodeMap

The NamedNodeMap interface represents a collection of Attr objects. Objects inside a NamedNodeMap are not in any particular order, unlike NodeList, although they may be accessed by an index as in an array.
API DOM Interface Reference Référence

NamedNodeMap.getNamedItem()

The NamedNodeMap.getNamedItem() method returns the Attr corresponding to the given name, or null if there is no corresponding attribute.
DOM Method NamedNodeMap Reference Référence

Navigator.productSub

The Navigator.productSub read-only property returns the build number of the current browser.
API DOM Property Read-only

Node.firstChild

The Node.firstChild read-only property returns the node's first child in the tree, or null if the node is childless. If the node is a Document, it returns the first node in the list of its direct children.
API DOM Gecko Node Property

Node.isEqualNode()

The Node.isEqualNode() method 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 much match varies depending on the types of the nodes.
API DOM Method Node Reference

Node.isSameNode()

The Node.isSameNode() method tests whether two nodes are the same, that is if they reference the same object.
API DOM Method Node Reference

Node.nextSibling

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

Node.ownerDocument

The Node.ownerDocument read-only property returns the top-level document object for this node.
API DOM Gecko NeedsBrowserCompatibility Property

Node.parentElement

The Node.parentElement read-only property returns the DOM node's parent Element, or null if the node either has no parent, or its parent isn't a DOM Element.
API DOM NeedsBrowserCompatibility Node Property

Node.parentNode

The Node.parentNode read-only property returns the parent of the specified node in the DOM tree.
API DOM Gecko NeedsBrowserCompatibility Property

NodeList.item()

Returns a node from a NodeList by index. This method doesn't throw exceptions as long as you provide arguments; a value of null is returned if the index is out of range and a TypeError is thrown if no argument is provided.
API DOM Method NodeList Reference

NonDocumentTypeChildNode

The NonDocumentTypeChildNode interface contains methods that are particular to Node objects that can have a parent, but not suitable for DocumentType.
API DOM Interface Reference Référence

Notification.requestPermission()

The requestPermission() method of the Notification interface requests permission from the user for the current origin to display notifications.
API DOM Method Notifications Reference

PerformanceResourceTiming

The PerformanceResourceTiming interface enables retrieving and analyzing detailed network timing data regarding the loading of an application's resources. An application can use the timing metrics to determine, for example, the length of time it takes to fetch a specific resource, such as an XMLHttpRequest, <SVG>, image, or script.
DOM Interface Reference Web Performance

ProgressEvent()

The ProgressEvent() constructor returns a newly created ProgressEvent, representing the current completion of a long process.
API Constructor DOM Events ProgressEvent

RadioNodeList

The RadioNodeList interface represents a collection of elements in a <form> or a <fieldset> element.
API HTML DOM Interface RadioNodeList