Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

javascript click to copy

function copyToClipboard(value) {
  navigator.clipboard.writeText(value)
}
Comment

js copy paragraph onclick

var copy = document.querySelectorAll(".copy"); 

for (const copied of copy) { 
  copied.onclick = function() { 
    document.execCommand("copy"); 
  };  
  copied.addEventListener("copy", function(event) { 
    event.preventDefault(); 
    if (event.clipboardData) { 
      event.clipboardData.setData("text/plain", copied.textContent);
      console.log(event.clipboardData.getData("text"))
    };
  });
};
Comment

PREVIOUS NEXT
Code Example
Javascript :: fetching data with react 
Javascript :: how to iterate array in javascript 
Javascript :: remove element from array lodash 
Javascript :: javascript insert text in textarea at cursor position 
Javascript :: get current url react router 
Javascript :: get user country code javascript 
Javascript :: reload datatable 
Javascript :: render css express js 
Javascript :: javascript count character in string 
Javascript :: js new array from new set 
Javascript :: html to pdf javascript 
Javascript :: npm fs 
Javascript :: insert element in specific index javascript 
Javascript :: remove last element from array javascript 
Javascript :: array asociativo multidimensional javascript 
Javascript :: javascript how to extract a value outside function 
Javascript :: npm react dropdown 
Javascript :: prime numbers using for loop in Js 
Javascript :: delete node modules 
Javascript :: skip arguments in js 
Javascript :: spining load react component 
Javascript :: findindex js 
Javascript :: web3 js get network 
Javascript :: sweetalert allow html 
Javascript :: Limit text to specified number of words using Javascript 
Javascript :: rotate array by d elements javascript 
Javascript :: javascript array to string remove comma 
Javascript :: Xpath select Parent Node Based On Child Node 
Javascript :: javascript sleep 1 second” is a pretty common code problem that people search ;-) 
Javascript :: Use ctrl + scroll to zoom the map & Move map with two fingers on mobile 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =