Skip to content

Instantly share code, notes, and snippets.

@hahwul
Created July 31, 2021 08:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hahwul/64a6ecb6a275268fa34dfda89a77fa3f to your computer and use it in GitHub Desktop.
Save hahwul/64a6ecb6a275268fa34dfda89a77fa3f to your computer and use it in GitHub Desktop.
copy to clipboard
function copy(val) {
const t = document.createElement("textarea");
document.body.appendChild(t);
t.value = val;
t.select();
document.execCommand('copy');
document.body.removeChild(t);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment