Created
February 2, 2024 09:56
-
-
Save w3teal/fa9d2139b5ee7a831c927f8b89d1fc59 to your computer and use it in GitHub Desktop.
This file contains 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
/** 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