Created
February 23, 2022 23:20
-
-
Save jnicol/6a608d9f65c43c6bbd66164977deb739 to your computer and use it in GitHub Desktop.
Copy to clipboard
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
function copyToClipboard() { | |
const cb = navigator.clipboard; | |
const el = document.getElementById('my-element'); | |
cb.writeText(el.innerText); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment