MDN Web Docs

Syntax

js

before(...nodes)

Parameters

nodes

A set of Node objects or strings to insert.

Return value

None (undefined).

Exceptions

HierarchyRequestError DOMException

Thrown when the new nodes cannot be inserted at the specified point in the hierarchy, that is if one of the following conditions is met:

Examples

The before() method allows you to insert new nodes before a CharacterData node leaving the current node's data unchanged.

js

const h1TextNode = document.querySelector("h1").firstChild;
h1TextNode.before("h1# ");
h1TextNode.parentElement.childNodes;
// NodeList [#text "h1# ", #text "CharacterData.before()"]
h1TextNode.data;
// "CharacterData.before()"

Specifications

Specification
DOM
# ref-for-dom-childnode-before①

Browser compatibility

See also

Help improve MDN

Yes No

Learn how to contribute

This page was last modified on by MDN contributors.

Read the original on developer.mozilla.org ↗