The ParentNode
interface contains methods that are particular to Node
objects that can have children.
ParentNode
is a raw interface and no object of this type can be created; it is implemented by Element
, Document
, and DocumentFragment
objects.
ParentNode.children
Read only
HTMLCollection
containing all objects of type Element
that are children of this ParentNode
.ParentNode.firstElementChild
Read only
Element
that is the first child of this ParentNode
, or null
if there is none.ParentNode.lastElementChild
Read only
Element
that is the last child of this ParentNode
, or null
if there is none.ParentNode.childElementCount
Read only
unsigned long
giving the amount of children that the object has.ParentNode.append()
Node
objects or DOMString
objects after the last child of the ParentNode
. DOMString
objects are inserted as equivalent Text
nodes.ParentNode.prepend()
Node
objects or DOMString
objects before the first child of the ParentNode
. DOMString
objects are inserted as equivalent Text
nodes.Specification | Status | Comment |
---|---|---|
DOM The definition of 'ParentNode.firstElementChild' in that specification. | Living Standard | Splitted the ElementTraversal interface in ChildNode and ParentNode . The firstElementChild , lastElementChild , and childElementCount properties are now defined on the latter.The Document and DocumentFragment implemented the new interfaces.Added the children property.Added the append() and prepend() methods. |
Element Traversal Specification The definition of 'ElementTraversal' in that specification. | Recommendation | Added the initial definition of its properties to the ElementTraversal pure interface and use it on Element . |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support (on Element ) | 1.0 | 3.5 (1.9.1) | 9.0 [1] | 10.0 | 4.0 |
Support on Document and DocumentFragment
| 29.0 | 25 (25) | No support | 16.0 | No support |
append() and prepend()
| 54.0 | 49 (49) | (Yes) | 39 | No support |
Feature | Android | Android Webview | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Mobile |
---|---|---|---|---|---|---|---|
Basic support (on Element ) | (Yes) | (Yes) | 1.0 (1.9.1) | (Yes) | (Yes) | (Yes) | (Yes) |
Support on Document and DocumentFragment
| (Yes) | (Yes) | 25.0 (25) | No support | 16.0 | No support | (Yes) |
append() and prepend()
| No support | 54.0 | 49.0 (49) | No support | 39 | No support | 54.0 |
[1] Internet Explorer 6, 7 and 8 supported it, but erroneously returns Comment
nodes as part of the results.
ChildNode
pure interface.
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/ParentNode