The cloneNode() method clones the current element and returns it
cloneNode()
Example
local elm = document.querySelector("body").querySelector("#clone").cloneNode() document.querySelector("body").appendChild(elm)
Last updated 1 year ago
Was this helpful?