Last active
August 8, 2017 06:51
-
-
Save math2001/c2d9f20f52fa6c07b2c63efe61976777 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var copyToClipboard = (function () { | |
const textarea = document.createElement('textarea') | |
// hide the textarea (since we can't use display: none, it's a bit long) | |
textarea.style.opacity = 0 | |
textarea.style.width = 0 | |
textarea.style.height = 0 | |
textarea.style.position = 'absolute' | |
textarea.style.bottom = '-100%' | |
textarea.style.left = '-100%' | |
textarea.style.margin = 0 | |
document.body.appendChild(textarea) | |
return function (text) { | |
textarea.value = text | |
textarea.select() | |
document.execCommand('copy') | |
} | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment