website/docs/javascripts/tagcopy.js
2026-01-06 13:13:16 +01:00

9 lines
267 B
JavaScript

function CopyToClipboard(id) {
var r = document.createRange();
r.selectNode(document.getElementById(id));
window.getSelection().removeAllRanges();
window.getSelection().addRange(r);
document.execCommand('copy');
window.getSelection().removeAllRanges();
}