Created
January 2, 2020 10:29
-
-
Save inwardmovement/71378e8a3ff7ec7499e1f922431019f5 to your computer and use it in GitHub Desktop.
Copy text on click (using JS)
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
// DISCORD COPY | |
function copyDiscord(discordTag) { | |
navigator.clipboard.writeText(discordTag).then(function() { | |
/* success */ | |
$('button.discord').tooltip('show'); | |
setTimeout(function(){ | |
$('button.discord').tooltip('hide') | |
}, 2000); | |
}, function() { | |
/* fail */ | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment