cloneNode
The cloneNode()
method clones a specific element and returns it
Example
local elm = document.querySelector("body").querySelector("#clone")
local clonedElm = document.cloneNode(elm)
document.querySelector("body").appendChild(clonedElm)
Last updated
Was this helpful?