tarot-cartes/models/reverse.js
2024-02-04 17:30:56 +01:00

4 lines
156 B
JavaScript

const top_element = document.getElementById("top");
const copy = top_element.cloneNode(true);
copy.id = "bottom";
top_element.parentNode.appendChild(copy);