For the complete documentation index, see llms.txt. This page is also available as Markdown.

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