cssjs-func-lib/copy-to-clipboard.js
2020-06-09 22:28:19 +02:00

20 lines
557 B
JavaScript

function copyToClipboard() {
var copyText = document.getElementById("copy-to-clipboard");
/* Select the text field */
copyText.select();
copyText.setSelectionRange(0, 99999); /*For mobile devices*/
/* Copy the text inside the text field */
document.execCommand("copy");
}
function copiedToClipboard() {
var tooltip = document.getElementById("copy-to-clipboard-tooltip");
tooltip.innerHTML = "Kopiert";
}
function resetClipboard() {
var tooltip = document.getElementById("copy-to-clipboard-tooltip");
tooltip.innerHTML = "Kopieren";
}