Skip to content

Instantly share code, notes, and snippets.

@kayza-media
Forked from rproenca/Clipboard.js
Created April 24, 2018 08:23
Show Gist options
  • Save kayza-media/6fdc4b62822333a608d03899f5ba8307 to your computer and use it in GitHub Desktop.
Save kayza-media/6fdc4b62822333a608d03899f5ba8307 to your computer and use it in GitHub Desktop.
Copy text to clipboard using Javascript. It works on Safari (iOS) and other browsers.
window.Clipboard = (function(window, document, navigator) {
var textArea,
copy;
function isOS() {
return navigator.userAgent.match(/ipad|iphone/i);
}
function createTextArea(text) {
textArea = document.createElement('textArea');
textArea.value = text;
document.body.appendChild(textArea);
}
function selectText() {
var range,
selection;
if (isOS()) {
range = document.createRange();
range.selectNodeContents(textArea);
selection = window.getSelection();
selection.removeAllRanges();
selection.addRange(range);
textArea.setSelectionRange(0, 999999);
} else {
textArea.select();
}
}
function copyToClipboard() {
document.execCommand('copy');
document.body.removeChild(textArea);
}
copy = function(text) {
createTextArea(text);
selectText();
copyToClipboard();
};
return {
copy: copy
};
})(window, document, navigator);
Clipboard.copy('text to be copied');
@kayza-media
Copy link
Author

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