Skip to content

Instantly share code, notes, and snippets.

@rproenca
Last active November 19, 2023 07:34
  • Star 73 You must be signed in to star a gist
  • Fork 16 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save rproenca/64781c6a1329b48a455b645d361a9aa3 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');
@zhanfeng-z
Copy link

zhanfeng-z commented Jul 5, 2018

@webestet
add a click event to the copy button,just like this:
<div class="button clipboardBtn" data-clipboard-action="copy" data-clipboard-text="{browserShareText.hideText}" on-click="console.log(1)">复制并去微信粘贴</div>
It works for me, iphone 6s, IOS 11.4

@PhGalaz
Copy link

PhGalaz commented Aug 24, 2018

When clicked on iphone the viewport scrow down to focus my input (another input I'm using on the site). Any idea to prevent this?

@torben3d
Copy link

torben3d commented Nov 6, 2018

When clicked on iphone the viewport scrow down to focus my input (another input I'm using on the site). Any idea to prevent this?

hey, I used the hacky way of positioning the element out of page flow.

position: absolute;
top: -9999px

@kbizukov
Copy link

On iphones, to prevent keypad popup and zooming to input, use readonly attirbute on textarea

@MarkChoCho
Copy link

awesome!!! totally helped me, Thank you!!

@carpogoryanin
Copy link

When clicked on iphone the viewport scrow down to focus my input (another input I'm using on the site). Any idea to prevent this?

hey, I used the hacky way of positioning the element out of page flow.

position: absolute;
top: -9999px

@torben3d using this page is scrolled at the top :)

@karrramba
Copy link

karrramba commented Aug 14, 2019

On iphones, to prevent keypad popup and zooming to input, use readonly attirbute on textarea

<meta name="viewport" content="width=device-width, initial-scale=1">

@Benetos
Copy link

Benetos commented Sep 22, 2019

Is there a way to use this to copy multiple text boxes? From a form or something along those lines?

@SWei1234
Copy link

SWei1234 commented Jan 7, 2021

Looks like it's not working on safari 13...

@creeperyang
Copy link

@ppab
Copy link

ppab commented Jul 22, 2021

Thanks!

@xelinel32
Copy link

That cool. Thanks!

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