Skip to content

Instantly share code, notes, and snippets.

@LIGMATV
Created February 2, 2024 09:56
Show Gist options
  • Save LIGMATV/fa9d2139b5ee7a831c927f8b89d1fc59 to your computer and use it in GitHub Desktop.
Save LIGMATV/fa9d2139b5ee7a831c927f8b89d1fc59 to your computer and use it in GitHub Desktop.
/** Copies.js */
function copyToClipboard(element) { var $temp = $("<input>"); $("body").append($temp); $temp.val($(element).text()).select(); document.execCommand("copy"); $temp.remove(); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment