Skip to content

Instantly share code, notes, and snippets.

@perymimon
Last active March 15, 2019 12:59
Show Gist options
  • Save perymimon/a20603f9f37b8f670546 to your computer and use it in GitHub Desktop.
Save perymimon/a20603f9f37b8f670546 to your computer and use it in GitHub Desktop.
copy text to clipbord
function copyText(){
var code = document.querySelector('pre').innerText;
var select = document.querySelector('#clipboard');
select.value = code;
select.select();
try {
document.execCommand('copy');
alert('Text copied to clipboard!');
} catch (err) {
window.prompt("To copy the text to clipboard: Ctrl+C, Enter", code);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment