Skip to content

Instantly share code, notes, and snippets.

@interactiveRob
Last active October 6, 2021 10:09
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save interactiveRob/39a3eb36c7403f1ba43c190fc88f972f to your computer and use it in GitHub Desktop.
Save interactiveRob/39a3eb36c7403f1ba43c190fc88f972f to your computer and use it in GitHub Desktop.
Copy String to Clipboard ES6 Method
copyToClipboard(str) {
/* ——— Derived from: https://hackernoon.com/copying-text-to-clipboard-with-javascript-df4d4988697f
improved to add iOS device compatibility——— */
const el = document.createElement('textarea'); // Create a <textarea> element
let storeContentEditable = el.contentEditable;
let storeReadOnly = el.readOnly;
el.value = str; // Set its value to the string that you want copied
el.contentEditable = true;
el.readOnly = false;
el.setAttribute('readonly', false); // Make it readonly false for iOS compatability
el.setAttribute('contenteditable', true); // Make it editable for iOS
el.style.position = 'absolute';
el.style.left = '-9999px'; // Move outside the screen to make it invisible
document.body.appendChild(el); // Append the <textarea> element to the HTML document
const selected =
document.getSelection().rangeCount > 0 // Check if there is any content selected previously
? document.getSelection().getRangeAt(0) // Store selection if found
: false; // Mark as false to know no selection existed before
el.select(); // Select the <textarea> content
el.setSelectionRange(0, 999999);
document.execCommand('copy'); // Copy - only works as a result of a user action (e.g. click events)
document.body.removeChild(el); // Remove the <textarea> element
if (selected) {
// If a selection existed before copying
document.getSelection().removeAllRanges(); // Unselect everything on the HTML document
document.getSelection().addRange(selected); // Restore the original selection
}
el.contentEditable = storeContentEditable;
el.readOnly = storeReadOnly;
}
@interactiveRob
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment