Skip to content

Instantly share code, notes, and snippets.

@ixqbar
Created February 12, 2019 09:30
Show Gist options
  • Select an option

  • Save ixqbar/7a8142a77b1473228823b0310d7dc920 to your computer and use it in GitHub Desktop.

Select an option

Save ixqbar/7a8142a77b1473228823b0310d7dc920 to your computer and use it in GitHub Desktop.
copy
(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);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment