(function(){
function executeCopy(text) {
var input = document.createElement('textarea');
document.body.appendChild(input);
input.value = text;
input.focus();
input.select();
document.execCommand('Copy');
input.remove();
}
executeCopy(window.location.hostname);
})();
Created
February 12, 2019 09:30
-
-
Save ixqbar/7a8142a77b1473228823b0310d7dc920 to your computer and use it in GitHub Desktop.
copy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment