NonDocumentTypeChildNode

The NonDocumentTypeChildNode interface contains methods that are particular to Node objects that can have a parent, but not suitable for DocumentType.

NonDocumentTypeChildNode is a raw interface and no object of this type can be created; it is implemented by Element, and CharacterData objects.

Properties

There are no inherited properties.

NonDocumentTypeChildNode.previousElementSibling Read only
Returns the Element immediately prior to this node in its parent's children list, or null if there is no Element in the list prior to this node.
NonDocumentTypeChildNode.nextElementSibling Read only
Returns the Element immediately following this node in its parent's children list, or null if there is no Element in the list following this node.

Methods

There are neither inherited nor specific methods.

Specifications

Specification Status Comment
DOM
The definition of 'NonDocumentTypeChildNode' in that specification.
Living Standard Splitted the ElementTraversal interface in ParentNode, ChildNode, and NonDocumentTypeChildNode. The previousElementSibling and nextElementSibling are now defined on the latter.
The CharacterData and Element implemented the new interfaces.
Element Traversal Specification
The definition of 'ElementTraversal' in that specification.
Obsolete Added the initial definition of its properties to the ElementTraversal pure interface and use it on Element.

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
Basic support (on Element)Chrome Full support 1Edge Full support 12Firefox Full support 3.5IE Full support 9Opera Full support 10Safari Full support 4WebView Android Full support YesChrome Android Full support YesFirefox Android Full support 4Opera Android Full support 10.1Safari iOS Full support YesSamsung Internet Android Full support Yes
Support (on CharacterData)Chrome Full support 1Edge Full support ≤18Firefox Full support 25IE No support NoOpera Full support 10Safari Full support 4WebView Android Full support YesChrome Android Full support YesFirefox Android Full support 25Opera Android Full support 10.1Safari iOS Full support YesSamsung Internet Android Full support Yes
nextElementSiblingChrome Full support 4Edge Full support 12
Notes
Full support 12
Notes
Notes Before Edge 79, this property was only implemented for Element, not for CharacterData.
Firefox Full support 3.5IE Partial support 9
Notes
Partial support 9
Notes
Notes Only implemented for Element, not for CharacterData. See polyfill.
Opera Full support 10Safari Full support 4WebView Android Full support YesChrome Android Full support YesFirefox Android Full support 4Opera Android Full support 10.1Safari iOS Full support YesSamsung Internet Android Full support Yes
previousElementSiblingChrome Full support 4Edge Full support 12
Notes
Full support 12
Notes
Notes Before Edge 79, this property was only implemented for Element, not for CharacterData.
Firefox Full support 3.5IE Partial support 9
Notes
Partial support 9
Notes
Notes Only implemented for Element, not for CharacterData. See polyfill.
Opera Full support 10Safari Full support 4WebView Android Full support YesChrome Android Full support YesFirefox Android Full support 4Opera Android Full support 10.1Safari iOS Full support YesSamsung Internet Android Full support Yes

Legend

Full support
Full support
Partial support
Partial support
No support
No support
See implementation notes.
See implementation notes.

See also