Answers for "click and copy to clipboard library"

15

copy link to clipboard

function copy() {
  var copyText = document.querySelector("#input");
  copyText.select();
  document.execCommand("copy");
}

document.querySelector("#copy").addEventListener("click", copy);
Posted by: Guest on September-17-2019
0

Copy to Clipboard

const copyToClipboard = (text) => navigator.clipboard.writeText(text);

copyToClipboard("Hello World");
Posted by: Guest on September-28-2021

Code answers related to "click and copy to clipboard library"

Code answers related to "Javascript"

Browse Popular Code Answers by Language