HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

adoptNode

Description

The adoptNode of Document for JS moves node from another document and returns it.

If node is a document, throws a "NotSupportedError" DOMException or, if node is a shadow root, throws a "HierarchyRequestError" DOMException.

Syntax

node = document.adoptNode(node)

Parameters

node

A node.

Examples

1

2