Answers for "how to copy a text in jjs"

11

js copy text 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
1

copy string js

newString = `${oldString}`;
Posted by: Guest on April-24-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language