You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
481 B
JavaScript
24 lines
481 B
JavaScript
function copyToClipboard(elementId) {
|
|
|
|
/* Get the text field */
|
|
var copyText = document.getElementById(elementId);
|
|
|
|
/* Select the text field */
|
|
copyText = copyText.textContent;
|
|
|
|
/* Copy the text inside the text field */
|
|
navigator.clipboard.writeText(copyText);
|
|
|
|
var tooltip = document.getElementById("myTooltip");
|
|
tooltip.innerHTML = "Copied";
|
|
|
|
}
|
|
|
|
function resetCopy() {
|
|
|
|
var tooltip = document.getElementById("myTooltip");
|
|
tooltip.innerHTML = "Copy to clipboard";
|
|
|
|
}
|
|
|