document.addEventListener("DOMContentLoaded", function () { document.querySelectorAll("pre").forEach(function(pre){ const button = document.createElement("button"); button.className = "copy-btn"; button.innerText = "Copy"; pre.appendChild(button); button.addEventListener("click", function(){ const code = pre.querySelector("code").innerText; navigator.clipboard.writeText(code).then(function(){ button.innerText = "Copied!"; button.classList.add("copied"); setTimeout(function(){ button.innerText = "Copy"; button.classList.remove("copied"); },2000); }); }); }); });