EduardET

copy to clipboard

Jan 23rd, 2018
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.55 KB | None | 0 0
  1. <script>
  2. function copyToClipboard(elementId) {
  3.  
  4.  // Create a "hidden" input
  5.  var aux = document.createElement("input");
  6.  
  7.  // Assign it the value of the specified element
  8.  aux.setAttribute("value", document.getElementById(elementId).innerHTML);
  9.  
  10.  // Append it to the body
  11.  document.body.appendChild(aux);
  12.  
  13.  // Highlight its content
  14.  aux.select();
  15.  
  16.  // Copy the highlighted text
  17.  document.execCommand("copy");
  18.  
  19.  // Remove it from the body
  20.  document.body.removeChild(aux);
  21.  
  22. }
  23. </script>
  24. <button onclick="copyToClipboard('copy-to-clipboard')">copy to clipboard</button>
Advertisement
Add Comment
Please, Sign In to add comment