Can an Element created by document.createElement
be added to another document?
const element = document.createElement("div");
anotherDocument.body.appendChild(element)
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
Can an Element created by document.createElement
be added to another document?
const element = document.createElement("div");
anotherDocument.body.appendChild(element)