nyazoom/dist/scripts/link.js

6 lines
171 B
JavaScript
Raw Permalink Normal View History

2023-07-27 15:40:01 +00:00
function clipboard() {
let copyText = document.getElementById("link");
navigator.clipboard?.writeText(copyText.href).then(() => alert("Copied: " + copyText.href));
}