Skip to content

Instantly share code, notes, and snippets.

@jnicol
Created February 23, 2022 23:20
Show Gist options
  • Save jnicol/6a608d9f65c43c6bbd66164977deb739 to your computer and use it in GitHub Desktop.
Save jnicol/6a608d9f65c43c6bbd66164977deb739 to your computer and use it in GitHub Desktop.
Copy to clipboard
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