JavaScript DocumentFragment : Node
A
DocumentFragment
is a container for Node
s. When adding a
DocumentFragment
to a Node
, all the children of the DocumentFragment
become
direct children of the Node
. Use document.createDocumentFragment()
to create a
DocumentFragment
.
Copyright © PUBLIC Contributors