Skip to content

Instantly share code, notes, and snippets.

@andrewn
Created September 2, 2015 20:02
Show Gist options
  • Save andrewn/ddab51cbdd8068434781 to your computer and use it in GitHub Desktop.
Save andrewn/ddab51cbdd8068434781 to your computer and use it in GitHub Desktop.
document.body.addEventListener(
'mouseup',
function () {
var input = document.createElement('input');
input.value = window.getSelection().toString();
input.select();
document.execCommand('copy');
console.log('copied');
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment