Horje
copy to clipboard javascript Code Example
javascript text to clipboard
function copyToClipboard(text) {
   const elem = document.createElement('textarea');
   elem.value = text;
   document.body.appendChild(elem);
   elem.select();
   document.execCommand('copy');
   document.body.removeChild(elem);
}
copy button value to clipboard function javascript
//U need to have a button with the id the same as its name because it is going to be sent to the clipborad.
/*Like this: */
<button onClick="SelfCopy(this.id)"  id="1">1</button>
<button onClick="SelfCopy(this.id)"  id="2">2</button>
<button onClick="SelfCopy(this.id)"  id="3">3</button>

function SelfCopy(copyText)
  {
      navigator.clipboard.writeText(copyText);
      alert("You just copied this: (" + copyText + ").");
  }
copy text to clipboard javascript
//As simple as this
navigator.clipboard.writeText("Hello World");
copy to clipboard javascript
function copy() {
  var copyText = document.querySelector("#input");
  copyText.select();
  document.execCommand("copy");
}

document.querySelector("#copy").addEventListener("click", copy);
copy to clipboard javascript
navigator.clipboard
  .writeText("Text")
  .then(() => console.log("Copied to clipboard"))
  .catch((err) => console.log(err))
copy to clipboard javascript
$('.copyable').click(function (event) {
  const targetInput  = document.getElementById('copyable');
  targetInput.select();
  document.execCommand('copy');
  //navigator.clipboard.writeText(targetInput.getAttribute('data-url'));
  alert("Link Copied");
});




Javascript

Related
promise states javascript Code Example promise states javascript Code Example
compare and filter two array of object Code Example compare and filter two array of object Code Example
javascript iterate through an object (key, value) Code Example javascript iterate through an object (key, value) Code Example
js first letter capital Code Example js first letter capital Code Example
sum of digits in a whole number javascript Code Example sum of digits in a whole number javascript Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7